csv & plot graph (HELP)

11 Ansichten (letzte 30 Tage)
zhixuan hong
zhixuan hong am 8 Mär. 2018
Beantwortet: KSSV am 8 Mär. 2018
HI guys , need help here... Figure 1 is my csv data....Why only one set of data (the first set) was plotted in figure 2?
My codes:
fid = fopen('V.csv');
readData=textscan (fid,'%f %f','Headerlines',1,'Delimiter',',');
Xdata=readData{1,1}(:,1);
Ydata=readData{1,2}(:,1);
f1=figure(1);
cla;
hold on;
grid on;
%P = InterX([Xdata;Ydata],[X1data;Y1data]); 
% plot(Xdata,Ydata,X1data,Y1data,P(1,:),P(2,:),'ro')
plot(Xdata,Ydata,'k-','marker','o')

Akzeptierte Antwort

KSSV
KSSV am 8 Mär. 2018
T = readtable('V.csv') ;
c1 = T{:,1} ; % first column
c2 = T{:,2} ; % second column
c3 = T{:,3} ; % third column
plot(c1,c2)

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by