How can I make a multi-variable function?

I want to turn f(x,y,z) = x^2 + 3y ^2 + 4z^2 – 2xy + 5x – 3y + 2z into an anonymous function

 採用された回答

James Tursa
James Tursa 2015 年 6 月 3 日

1 投票

Do you mean like this?
f = @(x,y,z) x.^2 + 3*y.^2 + 4*z.^2 - 2*x.*y + 5*x - 3*y + 2*z

1 件のコメント

Jennifer Wail
Jennifer Wail 2015 年 6 月 3 日
Thank you, I was doing that but something else wasn't working. I'll post another question on it.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by