フィルターのクリア

plotting three functions in the same graph with a specification

1 回表示 (過去 30 日間)
Noi Sekuri
Noi Sekuri 2020 年 4 月 23 日
コメント済み: Hank 2020 年 4 月 29 日
I want to plot three functions (x,y1) (x, y2) (x, y3) at the same graph. The point is that I want to be able to see the curve of xlogx function (I dont want to have a flat (x,y2) function) while the other two remain flat. How can I do this?
x values will be from 1000 to 24001000 and increse by 10000.
x = [1000, 1001000, 2001000, 3001000, 4001000, 5001000, 6001000, 7001000, 8001000, 9001000, 10001000, 11001000, 12001000, 13001000, 14001000, 15001000, 16001000, 17001000, 18001000, 19001000, 20001000, 21001000, 22001000, 23001000, 24001000]
y1 values will be 1000 times each corresponding x.
y2 values will be x * log(x) (base of logarithm will be 2)
y3 values will be just equal to each corresponding x value

採用された回答

Adam Danz
Adam Danz 2020 年 4 月 23 日
x * log(x) should be
x .* log(x)
% ^
and then set the y axis scale to log.
set(gca, 'YScale', 'log')
% Or, if you have the axis handle,
ax.YScale = 'log';
  6 件のコメント
Adam Danz
Adam Danz 2020 年 4 月 23 日
編集済み: Adam Danz 2020 年 4 月 23 日
"I get a flat xlogx line with your solution. I want to have it curved and only the linear functions flat."
In that case, use the yyaxis solution I wrote above.
Put the linear lines on the left (or right) axis and the log line on the other axis. Then set the appropriate axis to log scale using the line of code from my answer. Just note that the two linear scaled lines are on vastly different sales so one of them will be at the bottom of the plot (see below).
If you run into problems, share your code so I can help straighten it out.
Noi Sekuri
Noi Sekuri 2020 年 4 月 23 日
Thank you very much.

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

その他の回答 (1 件)

Hank
Hank 2020 年 4 月 23 日
Your three function values fall in a range of orders of magnitude spanning 1e3 to 1e10. I think this code is the best visualization of the three functions in the same graph
x = (1000:1e5:24.001e6)'; % x values
% functions as you described
y1 = 1000*x;
y2 = x.*log(x);
y3 = x;
% plot(x,[y1 y2 y3]) %this doesn't work well because y2 and y3 appear near the x axis
semilogy(x,[y1 y2 y3]) % plots the three functions with a logscale y axis
  2 件のコメント
Noi Sekuri
Noi Sekuri 2020 年 4 月 23 日
Thank you but can I plot such that linear functions are flat and only xlogx function is curved? Your solution makes all of them curved.
Hank
Hank 2020 年 4 月 29 日
I understand. Adam's solution using left and right axes is best then. Cheers

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

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by