필터 지우기
필터 지우기

How can I plot this picture!!!?

조회 수: 1 (최근 30일)
Le Xuan Thang
Le Xuan Thang 2022년 5월 26일
답변: Le Xuan Thang 2022년 6월 14일
This is picture that I want to plot
y label is value of variable x(i)
x label present the variable.( in this picture have 6 column so 6 variable you have)
and 0<x<1.
Every iteration pass this will plot the value of x(i)
Does matlab have any function to do this?
  댓글 수: 2
KSSV
KSSV 2022년 5월 26일
You can wirte a code for this and plot it. You need to use plot, text, line.
Le Xuan Thang
Le Xuan Thang 2022년 5월 27일
I understand. How can I draw 6 column like picture? Suggest that each column was split into 10 pieces like: coumn 1. y1 = linspace(0,1,10).

댓글을 달려면 로그인하십시오.

채택된 답변

Le Xuan Thang
Le Xuan Thang 2022년 6월 14일
I find out that it very simple in matlab that you can plot it by parallel coordinates plot. Thank you all for answers my question

추가 답변 (1개)

Walter Roberson
Walter Roberson 2022년 5월 27일
plot([x, x, repmat([x-delta,x+delta,nan],1,9)], [0, 1,.1,.1,nan,.2,.2,nan,.3,.3,nan,.4,.4,nan,.5,.5,nan,.6,.6,nan,.7,.7,nan,.8,.8,nan,.9,.9,nan])
where x is the x coordinate to draw the line, and delta is the distance before and after vertical line to draw each tick.
  댓글 수: 2
Le Xuan Thang
Le Xuan Thang 2022년 5월 27일
I try x = 1 and delta = 2
this is picture i got:
I seem not like picture in topic.
this is picture i get from my data. I need to draw 10 column like 6 column in picture of topic.
Maybe i do not understand your code. Can you give me example of this.
Walter Roberson
Walter Roberson 2022년 5월 27일
delta should be about 1/20 or less

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by