Some Great Thoughts

"Go ahead and do your best" | "It is the simple things in life that build brilliance in creativity..simplicity cannot be taught, it is inborn..do not tamper with it" | "All men dream but not equally. Those who dream by night in the dusty recesses of their minds wake in the day to find that it was vanity; but the dreamers of the day are dangerous men, for they may act their dream with open eyes to make it possible" | "इच्छा हमेशा योग्यता को हरा देती है" | "If you think you can do a thing or think you can't do a thing, you're right. -Henry Ford" | "Failure is success if we learn from it. -Malcolm S. Forbes" | "The future belongs to those who believe in the beauty of their dreams. -Eleanor Roosevelt" | "The great men and women of history are remembered, not because they never made mistakes or never failed, but because they didn't let their failures stop them. They kept on until they succeeded" | "असफलता हमें सिखाती है कि सफलता का प्रयत्न पूरे मन से नहीं किया गया"

Sunday, September 11, 2011

Programming in MATLAB for Beginners-2

How to create a Matrix:-
enter all elements separated by space or coma & inclosed with [ ].
A=[1 2 3 4 5];
or
A=[1,2,3,4,5];
for coulmn matrix elements separated by semi colon ( ; )
A=[1;2;3;4;5]

A=[N:M]; create a row matrix with starting number N & last element M with the difference of "1".
A=[M:D:M]; create a row matrix with starting number N & last element M with the difference of "D".
A=zeros(R,C); create a matrix of "R" Row & "C" Column with all elements Zero.
A=ones(R,C); create a matrix of "R" Row & "C" Column with all elements One.
A=rand(R,C); create a matrix of "R" Row & "C" Column with Random Elements b/w 0 & 1 .
A=eye(R,C); create a Identity Matrix of "R" Row & "C" Column.


How to use editor:-
just type edit on comaand window & press enter.
       you get a new window in which you can write your program or function.
       save this file with .m extentation.


 How to I/P any variable at run time:-
use input(' ') command for it in editor at the time of writing program.
A=input('enter the value of A');



No comments:

Post a Comment