Can anybody help me?

2 ビュー (過去 30 日間)
Tiziano Bagnasco
Tiziano Bagnasco 2020 年 10 月 28 日
回答済み: madhan ravi 2020 年 10 月 28 日
Good morning everyone,
I'm not really into Matllab and that's why I'm asking you to help me. I'm trying to create a for loop in which i multiply a matrix P by a scalar( the ith component of lambda) that changes for evey iteration. So i want to repeat this operation 19 times.
To be more clear:
lambda= 0.1:0.05:1; lambda is a row vector (1x19 double)
The matrix P is a 13x13 double
I began with something like this but I don't know how to continue:
for i=1:length(lambda)
Pprime(i) = P.*(lambda)
end
Thanks in advance

回答 (2 件)

Alan Stevens
Alan Stevens 2020 年 10 月 28 日
Change
Pprime(i) = P.*(lambda)
to
Pprime(i) = P.*(lambda(i));

madhan ravi
madhan ravi 2020 年 10 月 28 日
Pprime = bsxfun(@times, P, reshape(lambda, 1, 1, [ ]) % for newer versions use .* directly

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by