How can I do plot from rpt culomns?

Hello everybody, I have an rpt file and I need make a plot from this 2 culomns (but I don't know how form this type of file):
X Y
0. -300.E-36
9.99999E-03 -40.7684E-06
20.E-03 -81.531E-06
30.0002E-03 -122.283E-06
.... ....
.... ....
.... ....
...just easy x,y plot. So do you have (someone) any ideas?
Thanks for every help.
A15B0475P

回答 (1 件)

KSSV
KSSV 2017 年 3 月 24 日

0 投票

data = importdata('your .rpt file') ;
x = data.data(:,1) ;
y = data.data(:,2) ;
plot(x,y)

2 件のコメント

PeterHouse
PeterHouse 2017 年 4 月 10 日
Thank you KSSV, so much.
Lubos
KSSV
KSSV 2017 年 4 月 11 日
Thanks is accepting the answer....

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

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

タグ

質問済み:

2017 年 3 月 23 日

コメント済み:

2017 年 4 月 11 日

Community Treasure Hunt

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

Start Hunting!

Translated by