For loop for matrix division

3 次查看(过去 30 天)
quinn rizzo
quinn rizzo 2019-11-7
How would you use a for loop to divide a matrix by a vector if the vector has changing values?
  1 个评论
Walter Roberson
Walter Roberson 2019-11-7
If the matrix is A, and the vector is V, then how should the output be constructed? Is Output(J,K) = A(J,K)./V(J) for example ? Is every column to be divided by a different version of the vector, such as (for example) A(:,1)./V, A(:,2)./V.^2, A(:,3)./V.^3 ?

请先登录,再进行评论。

回答(1 个)

John D'Errico
John D'Errico 2019-11-7
编辑:John D'Errico 2019-11-8
Why would you want to use any loop at all? For example, if A is an mxn matrix, and V is a vector of size mx1, then consider what does this do:
B = A./V;
At least, if you are using release R2016b or later.
Earlier releases would use bxfun...
B = bsxfun(@rdivide,A,V);
Still pretty easy. If V is a row vector, then similar things apply.
So unless this is homework, why would you bother using a loop at all? And if it is homework, then why not try something? (And tell us honestly that it is your homework.) Show what you would think of doing, and you might get some advice on how to fix it. And you never know, you might even get it right yourself.

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by