csv & plot graph (HELP)
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
zhixuan hong
el 8 de Mzo. de 2018
Respondida: KSSV
el 8 de Mzo. de 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')
0 comentarios
Respuesta aceptada
KSSV
el 8 de Mzo. de 2018
T = readtable('V.csv') ;
c1 = T{:,1} ; % first column
c2 = T{:,2} ; % second column
c3 = T{:,3} ; % third column
plot(c1,c2)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!