Create a diagram with 3 polynomials

1 回表示 (過去 30 日間)
Berkay
Berkay 2022 年 8 月 30 日
コメント済み: Star Strider 2022 年 8 月 30 日
I have defined 3 polynomials
P1 = [ 1 -2 -15]
P2 = [1 -7 12]
P3 = [1 1 -14 -24]
I want to generate a graph that will present the shape of all polynomials in range from -100 to 100 with specific description(the logarithmic axes)
How can I do it?

採用された回答

Star Strider
Star Strider 2022 年 8 月 30 日
I am not certain wht you want with ‘logarithmic axes’ so this creates both as logarithmic —
P1 = [ 1 -2 -15];
P2 = [1 -7 12];
P3 = [1 1 -14 -24];
x = linspace(-100, 100, 250);
V1 = polyval(P1,x);
V2 = polyval(P2,x);
V3 = polyval(P3,x);
figure
plot(x, [V1;V2;V3])
Ax = gca;
Ax.XScale = 'log'; % Logarithmic X-Axis
Ax.YScale = 'log'; % Logarithmic Y-Axis
grid
Warning: Negative data ignored
It may be best to only have the x-axis be logarithmic, and if so, consider using logspace instead of linspace.
.
  4 件のコメント
Berkay
Berkay 2022 年 8 月 30 日
thanks a lot man!!
Star Strider
Star Strider 2022 年 8 月 30 日
As always, my pleasure!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by