i want to write a code where equation is y=x*x. if y=100 what is the value of x?
1 回表示 (過去 30 日間)
古いコメントを表示
i have written
z=100;
for x=1:1:20
y=x*x
if y==z
fprintf(x)
end
end
0 件のコメント
採用された回答
Stephen23
2020 年 9 月 18 日
編集済み: Stephen23
2020 年 9 月 18 日
>> f = @(x) x.^2 - 100;
>> x = fzero(f,pi)
x = 10
その他の回答 (1 件)
参考
カテゴリ
Help Center および 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!