Sunday, September 11, 2011

Programming in MATLAB for Beginners-1

Programming in MATLAB is simpler then any other programming language.
Here you can see the MATLAB window which contain "Directory, Command Window, Workspace & Command History".
We use Command Window to write any program or commands. Command windo also show output of any program or any instuction.
We can check our variables in Workspace & we also get our previous commands in Command History.
Here is some Basic Programs for beginners like Addition or other mathematical operations.

 Program of Addition of Two or More Numbers:-

>> %input first number
>> a=5;
>> %input second number
>> b=9;
>> %addition
>> c=a+b

c =

    14
Or



>> %input first number
>> a=5;
>> %input second number
>> b=9;
>> %addition
>> c=a+b;
>> %type c and press enter
>> c

c =

    14

Or

>> %input first number
>> a=5;
>> %input second number
>> b=9;
>> %addition
>> c=a+b;
>> %to display result use 'disp'
>>disp(c)
    14

Similarly we can perform subtraction of two numbers.


No comments:

Post a Comment