You can use matlab function bsxfun to Divide, Multiply, add and subtract element by element between two arrays. One or both arrays can be matrix.
Example:
To divide a matrix A by a vector array b
A=[1 2 3; 4 5 6];
b=[1 2 3];
D=bsxfun(@rdivide, A,b)
The result will be
D =
1.0000 1.0000 1.0000
4.0000 2.5000 2.0000
Other functions are
@plus to add
@minus to Minus
@times to multiply
Visit Matlab bsxfun page for more details.
Friday, April 5, 2013
Matlab operations between matrix and a vector array - Divide, Multiply, add and subtract element by element with bsxfun
Posted by
vicky
at
2:34 AM
Subscribe to:
Post Comments (Atom)
Popular
- SBI transaction on 30-Nov-0019 for INTERNET BANKING, what is this for?
- Convert Longitude 0-360 to -180 to 180 or 180W-180E in fortran and matlab, transform lat lon coordinates
- Quickly plot a shapefile in Matlab
- Online status of permesso di soggiorno on the website of Polizia di Stato
- New Rules to add spouse name in the Indian passport
No comments:
Post a Comment