Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

how can i stack different values on one axis?

조회 수: 1 (최근 30일)
May Ovdat
May Ovdat 2019년 12월 11일
마감: MATLAB Answer Bot 2021년 8월 20일
hi guys
i have about 5 different ranges of the same value omega, from different expirements. i want to showcase them all along the same number line - meaning one axis, as shown here:
dfdfd.JPG
im really looking for one easy function that could help me
thanks!

답변 (1개)

Adam Danz
Adam Danz 2019년 12월 11일
편집: Adam Danz 2019년 12월 16일
"I'm really looking for one easy function"
plot(X,Y) does that where each column of inputs produces a line. Here's a demo.
x = [69 72; 72.2 72.3; 72.3 72.4; 73.0 73.5; 73.6 74.2]; % x endpoints
y = [2 2; 2.2 2.2; 2.1 2.1; 1.9 1.9; 1.8 1.8 ]; % y values
h = plot(x.',y.');
Now you can edite each line color and other properties using
h(2).Color = 'r';

Community Treasure Hunt

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

Start Hunting!

Translated by