matlab 作业,求助!

王朝知道·作者佚名  2010-09-16
窄屏简体版  字體: |||超大  
 
分類: 電腦/網絡 >> 程序設計 >> 其他編程語言
 
問題描述:

作业要求写一个函数.m file

转换华氏度和摄氏度的关系

利用关系式C=5/9(F-32)

(Write a Matlab program that accept the temperature in degrees F and

compute the corresponding values of degrees C. The relation between the

two is C=5/9(F-32)

The program must meet the following criteria:

(1) The program must take temperature in degrees F as input from the user and output the

corresponding values in degrees C.

(2) The program must be able to take inputs and output results repeatedly (反复地) until the

user indicates through input that he wants to leave the program.

(3) The program must be robust For an example, see the following code segment

要求程序可循环执行,在运行之前用户被要求给与F数值,结束之前用户被询问选择是否离开或继续(At the end of each running of the loop the user is asked to choose whether to leave the

program or to continue.)

參考答案:

【1】把以下程序存为tempchange.m

function tempchange

clear;clc

F=1;

while F~=32 %输入32时退出循环

if F==32

break

else

F=input('F=')

end

C=5/9*(F-32)

end

【2】调用时,

>>tempchange

小贴士:① 若网友所发内容与教科书相悖,请以教科书为准;② 若网友所发内容与科学常识、官方权威机构相悖,请以后者为准;③ 若网友所发内容不正确或者违背公序良俗,右下举报/纠错。
 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航