How can I make a multi-variable function?

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

Accepted Answer

James Tursa
James Tursa on 3 Jun 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 Comment
Jennifer Wail
Jennifer Wail on 3 Jun 2015
Thank you, I was doing that but something else wasn't working. I'll post another question on it.

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!