learn matlab mumbai
Just search this site(EDA E-Book, Articles & Specification Requests) for "Matlab",
and search the web for Matlab tutorials or examples. Matlab's syntax is very easy
compared to C or C++ ect....
Here is a cool little program to test your system.
Cheers
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
disp('Use '' ??? '' around the text titles you input!!!')
PcNam=input('Give this PC a name (i.e. 1_9GHz). ')
eval('bench');
clock_vector = clock;
time_str = sprintf(' %2ih%2im',clock_vector(4:5));
idx=1 % Start index counter
for bb = 1:length(time_str);
if (time_str(bb) == ' ');
time_str(bb) = '0';
else
time_str(idx)=time_str(bb);
idx=idx+1;
end
end
figure(1) % Call Figure 1
Grf_Nam=sprintf('C:\\%s_%s_1',PcNam,time_str)% Time stamp string
saveas(gcf,Grf_Nam,'bmp')
figure(2) % Call Figure 2
Grf_Nam=sprintf('C:\\%s_%s_2',PcNam,time_str)% Time stamp string
saveas(gcf,Grf_Nam,'bmp')
%%%%%%%%%%%%%%%%% END%%%%%%%%%%%%%%%