How can I make a symbolic function with vector input?

1 visualización (últimos 30 días)
Hansol Lee
Hansol Lee el 21 de Abr. de 2020
Respondida: Jyotsna Talluri el 24 de Abr. de 2020
I want to make a symbolic function with vector input.
I tried a code
a=sym('a',[1 3]);
f(a)=a(1)^2+a(2)+a(3)*a(1);
k=[1 1 1];
f(k)
But it didn't work. I could find that f(1,1,1) works, but I want to make f with f([1 1 1]). How could I do it?

Respuesta aceptada

Jyotsna Talluri
Jyotsna Talluri el 24 de Abr. de 2020
a=sym('a',[1 3]);
f= @(a)(a(1)^2+a(2)+a(3)*a(1));
k=[1 1 1];
f(k)

Más respuestas (0)

Categorías

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

Community Treasure Hunt

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

Start Hunting!