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.
0 件のコメント
回答 (1 件)
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”:
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Scatter Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!