Borrar filtros
Borrar filtros

how to use the subs syntax for the two variable

2 visualizaciones (últimos 30 días)
yogeshwari patel
yogeshwari patel el 9 de Jun. de 2023
Respondida: yogeshwari patel el 9 de Jun. de 2023
syms x a
series1(x) = a+(2/3)*a*x+(5/3)*a^2*x^2+(1/3)*a^3*x^3
a=0.56
series2(x)=subs(series1,a,0.56)
%%%%%%%%%%%%%%%%%%%%%%%
when is use the subs synatx to replace the value of a in series1 it is not replacing the vlue of a .
So what the problem with the synatx?
Since series1 is the function of x only so it is not replacing the value a ?
If yes how should I substuite the value of a so that series1 contain only variable x .

Respuesta aceptada

Dyuman Joshi
Dyuman Joshi el 9 de Jun. de 2023
Editada: Dyuman Joshi el 9 de Jun. de 2023
"when is use the subs synatx to replace the value of a in series1 it is not replacing the vlue of a ."
When you define a=0.56, it overwrites a from symbolic variable to a double variable and thus you can not use it in subs()
There is no need of the line a=0.56. You can directly substitute the value.
In case you want to use a variable to store the value and then substitute, do not name it the same as the symbolic variable, use a different name such as - A or a0 or a_0 etc.
syms x a
series1(x) = a+(2/3)*a*x+(5/3)*a^2*x^2+(1/3)*a^3*x^3
series1(x) = 
series2(x)=subs(series1,a,0.56)
series2(x) = 

Más respuestas (1)

yogeshwari patel
yogeshwari patel el 9 de Jun. de 2023
Thank you

Categorías

Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by