Toggle navigation
Schools
Login
Sign Up
All Schools
University of California-San Diego
MAE
Courses in MAE
MAE 8 | Matlab Programming for Engineering Analysis
Documents:
1
Popular Documents from University of California-San Diego
a=[1,2,4]; b=[3,2,-1]; c=[-1,0,4]; A=[a;b;c]; d=[a,b,c]; B=A'; % If A is complex, A' produces complex conjugate transpose; A.' would be % just transpose % Array addressing a2=a(2); %a(:) % represents all elements of vector a %a(2:5) % represents 2nd