Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

how I solve this

2 visualizaciones (últimos 30 días)
Ghulam Murtaza
Ghulam Murtaza el 22 de Jun. de 2016
Cerrada: MATLAB Answer Bot el 20 de Ag. de 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.

Respuestas (1)

Walter Roberson
Walter Roberson el 22 de Jun. de 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

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by