Pages

Friday, February 22, 2013

View Property manager in VS2010

Tools > Import and Export Settings > Reset all settings >  Visual C++ Development Settings

Saturday, February 16, 2013

.mat files associated with MS Access short cut

Control Panel > Default Programs > Associate a file type or protocol with a specific program > Select .mat > Change > Matlab.exe

http://www.mathworks.in/support/solutions/en/data/1-VW0R7/

Wednesday, February 13, 2013

Load configuration settings dynamically using Matlab Eval function

Configuration script file = config.m

% Test function to call configuration setting dynamically

function test (config)

eval (config)
....

% script to call function 'test'
test('config');