フィルターのクリア

How can i find the number of lines

4 ビュー (過去 30 日間)
Thar
Thar 2014 年 12 月 13 日
回答済み: Guillaume 2014 年 12 月 13 日
Hi all!!
I have the script:
for h=1:2004
for j=1:numberOfLines; (problem)
K(j,h)=T(j,h)/N(j,1);
end
end
I don't know the number of lines and i need to put in the loop. What can i do?
Thank you!

採用された回答

Guillaume
Guillaume 2014 年 12 月 13 日
If numberOfLines is supposed to be the numbers of rows in K, T, and N, then have a look at the size function:
numberOfLines = size(T, 1);
However, don't use loops for this sort of calculations. It's simply:
K = bsxfun(@rdivide, T, N);

その他の回答 (0 件)

カテゴリ

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