matlab subs函数(matlab subs)
•
2023-04-12 12:10:26
摘要 关于matlab subs函数,matlab subs不少朋友还不清楚,今天小二来为大家解答以上的问题,现在让我们一起来看看吧!1、SUBS(S) replaces
关于matlab subs函数,matlab subs不少朋友还不清楚,今天小二来为大家解答以上的问题,现在让我们一起来看看吧!
1、SUBS(S) replaces all the variables in the symbolic expression S with values obtained from the calling function, or the MATLAB workspace. subs(S)表示:用数值替代所有的符号变量。
2、 y1=int(sin(x),x,0,t); 的结果是y1=-cos(t)+1,是符号结果,用subs(y1),将y1中的所有符号变为数值。
3、 clc;clear symst; t=0:pi/60:2*pi; y1=sin(t); y2=cos(t); plot(subs(y1),subs(y2))。
本文到此分享完毕,希望对你有所帮助。
版权声明:本文由用户上传,如有侵权请联系删除!