Info

This question is closed. Reopen it to edit or answer.

How can I find 'delta' between 3 or more surfaces?

2 views (last 30 days)
A
A on 2 Apr 2014
Closed: MATLAB Answer Bot on 20 Aug 2021
Consider following sample surfaces:
x = [-20:20];
y = [-20;20];
z1 = x + y;
z2 = x + 2y;
z3 = x + 3y;
For a given x and y value, how can I find out which of the three above equations has a value for z that is unique to that equation for that given x and y? For example (hypothetical), for x = 1, and y = 3, z1 gave 3, z2 gave 3, but z3 gave 6, then I would want to know that z3 is different at x = 1 and y = 3.
I want to see this in either a data table form or in a graphical form of some sort. What do people here think I should do?
Thank you

Answers (0)

This question is closed.

Community Treasure Hunt

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

Start Hunting!