loop function help please

1 回表示 (過去 30 日間)
Vhugala  Raphunga
Vhugala Raphunga 2020 年 3 月 29 日
回答済み: David Hill 2020 年 3 月 29 日
Use for loops to give the values of the following function: f(x) = 3x2 + 5x – 7 x < 0 3x + 4 x >= 0
for -10 <= x <= 10 in steps of 1

回答 (1 件)

David Hill
David Hill 2020 年 3 月 29 日
x=-10:10;
for k=1:length(x)
if x(k)<0
f(k)=3*x^2+5*x-7;
else
f(k)=3*x+4;
end
end

カテゴリ

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