Given three vectors x,y,z. Find four coefficients c = [cxx cxy cyy c00], such that z = cxx*x.^2+cxy*x.*y+cyy*y.^2+c00.
For example,
x = [ 0 0 1 1 2 2 3 3] y = [ 0 1 0 1 0 1 0 1] z = [-4 -1 -3 -2 0 -1 5 2]
then
z = x.^2-2*x.*y+3*y.^2-4
and
c = [cxx cxy cyy c00] = [1 -2 3 -4]
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers46
Suggested Problems
-
Remove any row in which a NaN appears
8769 Solvers
-
Project Euler: Problem 2, Sum of even Fibonacci
2823 Solvers
-
Back to basics 13 - Input variables
382 Solvers
-
556 Solvers
-
Compute a dot product of two vectors x and y
1049 Solvers
More from this Author99
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
The test suite does not allow for roundoff error.
good point, fixed, thanks