I want to divide each row of a matrix with corresponding element in another matrix .Please help.
81 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
SUNANNA S S
am 17 Apr. 2017
Bearbeitet: First Last
am 28 Mär. 2018
For eg: I have a matrix
A=[9 6 3;
4 2 8;
1 0 0;]
divide A by B=[3 2 1] to get the result
C=[3 2 1;
2 1 4;
1 0 0;]
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (2)
First Last
am 28 Mär. 2018
Bearbeitet: First Last
am 28 Mär. 2018
Make sure B is transposed to a column vector, i.e.,
C=A./B';
0 Kommentare
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!