How can I make a symbolic function with vector input?

1 回表示 (過去 30 日間)
Hansol Lee
Hansol Lee 2020 年 4 月 21 日
回答済み: Jyotsna Talluri 2020 年 4 月 24 日
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?

採用された回答

Jyotsna Talluri
Jyotsna Talluri 2020 年 4 月 24 日
a=sym('a',[1 3]);
f= @(a)(a(1)^2+a(2)+a(3)*a(1));
k=[1 1 1];
f(k)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!