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

 Réponse acceptée

James Tursa
James Tursa le 3 Juin 2015
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 commentaire

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

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by