Network Neighborhood
Citnov1
SOFTWARE on Citnov1
WinSW
Matlab
Bin
Matlab.exe
If this is your own PC, you may create a short cut for
MatLab now so that you do not need to go through these clicks
next time.
>> A=[1 2 0 4;3 -1 1 2;0 2 0 -1];
>> B=[2;1;-1;3];
>> C=[2 1 1];
The (i,j)th element of a matrix can also be assigned or changed
individually. For example, the command A(2,3)=0 replaces
the element at the second row and the third column of matrix A by 0.
A+B, 2*A-3*B (for 2A-3B), A*B (for AB)
A^k (for Ak, k is a given real number), A' (for AT)
>> T=sym('[a b;c d;e f;g h]');
symadd(A,B) (for A+B), symmul(A,B) (for AB)
sympow(A,k) (for Ak, k is a given positive integer),
transpose(A) (for AT)
>> A=[1 2 3;4 5 6;7 8 9]; >> rank(A) ans = 2Type help rank (in MatLab) to learn more about this command.
>> cd a:\Now you are on A Drive (insert your disk first), or
>> cd c:\mydocu~1Now you are on C Drive under directory mydocu~1 (a short for My Document).