converting a Fahrenheit degree to a Celsius degree, then use this function in a “for” loop to calculate the equivalent Celsius degrees for the Fahrenheit degrees from 0 to 200
9 ビュー (過去 30 日間)
古いコメントを表示
for loop
0 件のコメント
採用された回答
goc3
2016 年 10 月 15 日
You don't need to use a for loop. See the following vectorized solution:
% create an array from 0 to 200 (default increment of one used)
deg_F = 0:200; %temperature in Fahrenheit
% convert Fahrenheit to Celsius
deg_C = (deg_F - 32) / 9 * 5; %temperature in Celsius
0 件のコメント
その他の回答 (1 件)
Image Analyst
2016 年 10 月 15 日
Try this:
% Make an "anonymous function".
f2c = @(f) (f-32)*5/9;
% Convert all f from 0 to 200 into C
for f = 0 : 200
c = f2c(f);
fprintf('%d F = %.1f C\n', f, c);
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!