matlab关于求极值的一个程序调试,出错,请高手帮忙

2024-12-26 07:29:44
推荐回答(1个)
回答1:

t=[0:100];x=exp(-t).*sin(t);
response=input('type min,max,or sum.','s');
response=upper(response);
switch response
case 'MIN'
mininum=min(x)
case 'MAX'
maxinum=max(x)
case 'SUM'
total=sum(x)
otherwise
disp('you have not enter a proper choice.')
end
如上修改