Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.
There are alot of technical books with applications in matlab. So in my opinion choose a subject that you are familiar in and you want to develop for example some algorithms and start playing with matlab. By the time pass you will be familiar with some functions of matlab that makes life easy for you in technical computing. Also this kind of books have a brief introduction of matlab. I am sure you can find one in ebook upload/download section
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')
Hi I would suggest use of help and lookfor command(again???) and suggest following books
Intro 2 Matlab Stephen j Chapman
i think this is a good book for begineers.
Mastering Matlab 7 -- <i donot know the author's name>
What I did to start with MATLAB was to try program simple equations from my physics course. I tried to program the i-v curve of a bjt and a FET and put out the equations. It was a very good course. Try something similar. After 2 months I made my own ADC simulator with GUI for input values, mistakes etc. I even got a price for it ( not for it exactly but it was part of my work).
It depends what kind of application you will use it for. For simple application (math), probably the help files and tutorial (you can google on the web). For simulink etc application, probably the demos in matlab is the best.
matlab has a very powerful help,
as you know mathlab 7 has 3 cds which 2 of them are just help if you work by mathlab and its help as a trial&error it is the best ebook for you
pay attention that matlab has two different help one is via command line and very abriged and the one in toolbar and very complete
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.