No BSD License  

Highlights from
settings

image thumbnail
from settings by Mihai Moldovan
Interact with Windows registry from MATLAB.

test
function test
%test for settings
%to view the windows registry look with REGEDIT at key
%HKEY_LOCAL_MACHINE\SOFTWARE\MYKEY


%create structure
s=[];
s.x=1;
s.name='Mihai';
s.email='M.Moldovan@mfi.ku.dk';


%save settings
settings('MYKEY', s);

%load settings
b=settings('MYKEY')

%change settings
s=[];
s.name='Mihai Moldovan';
s.y=2;
settings('MYKEY', s);

b=settings('MYKEY')

%delete settings
settings('MYKEY', []);

%load settings
b=settings('MYKEY')

Contact us at files@mathworks.com