How to create a Symbolic vector

46 visualizaciones (últimos 30 días)
Amin Mohammadi
Amin Mohammadi el 27 de Feb. de 2021
Comentada: Star Strider el 27 de Feb. de 2021
Hi, I want to define n symbolic variables How to define: Syms x1 x2 ... xn ?! n is input function.

Respuestas (1)

Star Strider
Star Strider el 27 de Feb. de 2021
Try this::
n = inputdlg('Enter the length of the vector (integer): ');
n = str2double(n);
syms x
x = sym('x',[1 n])
producing (for n = 5):
x =
[x1, x2, x3, x4, x5]
Reference as you would any other vector:
v3 = x(3)
producing:
v3 =
x3
.
  2 comentarios
Amin Mohammadi
Amin Mohammadi el 27 de Feb. de 2021
Thanks. But I want to define variables x1 to xn as sym. Actually elements of the vector are symbolic! Syms x1 x2...xn
Star Strider
Star Strider el 27 de Feb. de 2021
My pleasure!
That is exactly what my code example does. The elements of the ‘x’ vector here are symbolic. See the documentation on the sym function for details.
Running:
whos x
after running my code reveals:
Name Size Bytes Class Attributes
x 1x5 8 sym
So it creates a symbolic vector for ‘x’.
.

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by