Matrices in Maltlab
There are many type of matrices in Matlab
1. Random Matrices
rand(n)
where n is a number
A 5 by 5 matrix with random entries is produced by typing
rand(7)
2. You can generate random matrices of other sizes and get help on the rand command
within matlab:
rand(3,6)
1. Random Matrices
rand(n)
where n is a number
A 5 by 5 matrix with random entries is produced by typing
rand(7)
2. You can generate random matrices of other sizes and get help on the rand command
within matlab:
rand(3,6)