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!