MATLAB: How to plot the uploaded csv file for each X value there are different Y values. as X = row 1 and Y = column 2 to 6? shown that in color waves .

3d plotsplotplottingsurface

Best Answer

clear
A= xlsread('work.csv')
plot(A(1,:),A(2:end,:),'linewidth',2)