if greater than in for loop

27 ビュー (過去 30 日間)
Eliana Juarez
Eliana Juarez 2020 年 6 月 26 日
コメント済み: Eliana Juarez 2020 年 6 月 26 日
using a for loop and if statement, i need to subtract 25 from each element in a vector called "seven" that is greater than 100.
here is my code, but when i run it i get the original values of all elements in seven. how can i fix this?
for k = seven
if k > 100
k - 25
else
k + 0
end
end

採用された回答

KSSV
KSSV 2020 年 6 月 26 日
for k = 1:length(seven)
if seven(k) > 100
seven(k) = seven(k) - 25 ;
end
end
  1 件のコメント
Eliana Juarez
Eliana Juarez 2020 年 6 月 26 日
Thank you so much!

サインインしてコメントする。

その他の回答 (1 件)

Rafael Hernandez-Walls
Rafael Hernandez-Walls 2020 年 6 月 26 日
seven=(seven>100).*(seven-25)+(seven<=100).*seven;

カテゴリ

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

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by