matlab不能使用syms,matlab syms什么意思

matlab不能使用syms,matlab syms什么意思_第1张图片

matlab syms什么意思?

matlab中syms意思是定义多个变量。

1、创建符号变量x和y

例如:syms x y

2、列出所有符号变量、函数和数组

创建一些符号变量、函数和数组如:syms a f(x);A = sym('A',[2 3]);

使用syms显示MATLAB工作区中当前存在的所有符号对象的列表。则符号变量是:A A f x;

不显示列表,而是通过向syms提供输出返回所有符号对象的单元格数组。如:S = syms;S = 4×1 cell array {'A'} {'a'} {'f'} {'x'};

matlab不能使用syms,matlab syms什么意思_第2张图片

扩展资料:matlab syms x y 用法>> help symssyms - Shortcut for creating symbolic variables and functions. 快捷方式创建符号变量var1This MATLAB function creates symbolic variables var1 ...syms var1 ... varNsyms var1 ... varN set 集合syms var1 ... varN clearsyms f(arg1,...,argN)

定义a,b,c,d为符号变量。

如:

输入表达式s=ax^4+bcosy-xy.>>a=4;b=6;>>syms x y>>s=a*x^4+b*cos(y)-x*y

只有这样才可以出来值。否则报错。>> syms x y>> xx =x>> yy =y>> a=4;b=6;syms x ys=a*x^4+b*cos(y)-x*ys =4*x^4 - y*x + 6*cos(y)

你可能感兴趣的:(matlab不能使用syms)