Line Plot with Highest value in the middle
显示 更早的评论
Hi,
Please how can I make a plot with the highest value in the middle while the lowest values at the bottom and top
For example
y -axis has [0, 5, 0]
Thanks
回答(2 个)
You mean
y = [0, 5, 0];
plot(y)
If you mean something else, you'll have to elaborate.
4 个评论
TTA
2022-5-26
DGM
2022-5-26
I don't see how that makes sense.
Say that x spans [700 1500 700] and y spans [700 1500 700]. Where is (700,700)? The entire domain is ambiguous except at x = y = 1500.
I doubt that's exactly what you want. It would help if you provide a (minimal) concrete example of what you're trying to do.
TTA
2022-5-26
dpb
2022-5-26
MATLAB axes are unidirectional by definition and can't be anything else -- and it doesn't make any sense, either.
If the y-axis were to be double-valued, which 700 value is to be used for any given set of x,y data? It's not defined only by the y value, but by the ordinal position in the vector, apparently.
All you could do in this case is plot the data in the time vector and then label tick values correspondingly as wanted independent of what the actual tick values are or have overlaying axes with independent scales and plot into the axes of choice for which piece of the data is associated with that section.
类别
在 帮助中心 和 File Exchange 中查找有关 Graphics Object Properties 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
