Hello all,
I am trying to plot a velocity profile at different locations as shown in the figure. Where I need x=1, x=25, ...x=150 at bottom x-axis and Dia at y-axis and the scale of the data at top x-axis as lables. I have tried to plot, but i am getting an error as 'Unrecognized function or variable 'X_1'.'. I am reading the data from Excel. I have tried with the following code:
data = readtable('Atq16.xlsx');
p1 = plot(X_1 + 1 , Dia ,'r', 'linewidth', 2); hold on; %grid on
p2 = plot(X_25 + 25 , Dia ,'g', 'linewidth', 2);
p3 = plot(X_50 + 50, Dia,'b', 'linewidth', 2);
p4 = plot(X_100 + 100, Dia,'k', 'linewidth', 2);
p5 = plot(X_150 + 150, Dia,'m', 'linewidth', 2);
ylabel('Dia(mm)');
xticks([1 25 50 100 150]);
xticklabels({'x=1','x=25','x=50','x=100','x=150'});
Please kindly do the needful. Thanks in advance.
With regards

 採用された回答

KSSV
KSSV 2021 年 9 月 16 日

0 投票

T = readtable('Atq16.xlsx') ;
data = table2array(T) ;
plot(data(:,2:end),data(:,1),'-or')

4 件のコメント

Vishnuvardhan Naidu Tanga
Vishnuvardhan Naidu Tanga 2021 年 9 月 16 日
Hello @KSSV,
Thank you for the answer. But I need to seperate each plot with some distance. Is it possible to do like that.
With regards
KSSV
KSSV 2021 年 9 月 16 日
T = readtable('https://in.mathworks.com/matlabcentral/answers/uploaded_files/740479/Atq16.xlsx') ;
p1 = plot(T.X_1 + 1 , T.Dia ,'r', 'linewidth', 2); hold on; %grid on
p2 = plot(T.X_25 + 25 , T.Dia ,'g', 'linewidth', 2);
p3 = plot(T.X_50 + 50, T.Dia,'b', 'linewidth', 2);
p4 = plot(T.X_100 + 100, T.Dia,'k', 'linewidth', 2);
p5 = plot(T.X_150 + 150, T.Dia,'m', 'linewidth', 2);
ylabel('Dia(mm)');
xticks([1 25 50 100 150]);
xticklabels({'x=1','x=25','x=50','x=100','x=150'});
Vishnuvardhan Naidu Tanga
Vishnuvardhan Naidu Tanga 2021 年 9 月 16 日
Thank you so much @KSSV. I have one another doubt. How can i have scale range on top X-axis?
KSSV
KSSV 2021 年 9 月 16 日
Read about text. Or you can do through .fig via gui.

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

その他の回答 (0 件)

カテゴリ

Community Treasure Hunt

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

Start Hunting!

Translated by