Clear Filters
Clear Filters

Info

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

how I solve this

2 views (last 30 days)
Ghulam Murtaza
Ghulam Murtaza on 22 Jun 2016
Closed: MATLAB Answer Bot on 20 Aug 2021
hi if i have polynomial like
p1 = x^2+x*y+y^2-2
p2 = x+y+x*y
and set of points like S= {(1,0),(1,-1),(5,7),...,(-1,-8)} , how I solve these polynomial on this set and get complete answer in a easy way. i mean all these polynomial evaluated on each point of set.

Answers (1)

Walter Roberson
Walter Roberson on 22 Jun 2016
S= {[1,0], [1,-1], [5,7], [-1,-8]}; %not the most natural of representations, but if it is what you have...
xy = cell2mat(S(:));
x = xy(:,1);
y = xy(:,2);
Now rewrite your multinomials to be vectorized:
p1 = x.^2 + x.*y + y.^2 - 2;
p2 = x + y + x.*y;
And you can then graph
pointsize = 20;
scatter3(x, y, p1, pointsize, 'r');
hold on
scatter3(x, y, p2, pointsize, 'b');
hold off

This question is closed.

Community Treasure Hunt

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

Start Hunting!