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
- New Rules to add spouse name in the Indian passport
- Chanakya TV serial, online on youtube, Vol 1-8, All episodes 1-47
- Spouse visa, wife visa or family visa, Bring your spouse together with you while coming to Italy
- Jawahar Navodaya Vidyalaya Rajsamand, My feelings and emotions for JNVR
- Tabrio Hack to multiply your credits by registering same phone number
No comments:
Post a Comment