用matlab画函数曲线图,公式为cosθ=f(s)=(s-175/s)/30,9.75cm≤s≤31.75cm急求!
问题描述:
用matlab画函数曲线图,公式为cosθ=f(s)=(s-175/s)/30,9.75cm≤s≤31.75cm急求!
答
s=9.75:0.05:31.75;theta=acos((s-175./s)/30);plot(s,theta)
答
clear all;clc;
s=9.75:0.01:31.75;
theta=acos((s-175./s)/30);
plot(s,theta*180/pi);
grid on;
axis([s(1),s(end),20,110]);
答
画图程序如下:
s=9.75:0.001:31.75;
y=(s-175./s)./30;
plot(s,y,'g')
grid on
xlabel('s/cm')
ylabel('f(s)')
title('f(s)=(s-175/s)/30,取值范围9.75cm≤s≤31.75cm')