Plotting graph to represent positive/negative roots of polynomial.

4 次查看(过去 30 天)
Hi,
I have code the calcualtes the roots for a polynomial over the double loop of 2 variables. I'm trying to plot a graph in (L,M) space which indicates at each point ( for 0<L, M<1), via colouring, if both roots are postive, one root being positive or none.
Thanks.

回答(1 个)

Samatha Aleti
Samatha Aleti 2019-11-4
As per my understanding you want to plot the points(roots) using different colors according to sign of both the roots. One of the ways do to this is use “scatter” and pass a vector indicating different colors as an input argument to it. Here is the sample code by assuming data x,y:
x = 1:10;
y = 2:2:20;
cmap = jet(length(x)); % generates 10 colors (RGB values)
scatter(x, y, 10, cmap);
You can define a color vector accordingly and use “scatter” to achieve desired plot.
Refer the following link for more details on ”scatter”:

类别

Help CenterFile Exchange 中查找有关 Scatter Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by