Operations depending on the row/column
古いコメントを表示
I have a 339x339 matrix (f2) containing values and I need to multiply all the cells below row 170 and columns less than 170 by -1. Below is what I have so far.
for t=1:339
if t < 170
f2=f2*-1;
end
end
This just makes everything negative.
Thank you for your help!
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!