How can I 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 .

3 views (last 30 days)

Accepted Answer

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

More Answers (0)

Categories

Find more on Line Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!