Filter löschen
Filter löschen

Error in reading csv file with xlsread

2 Ansichten (letzte 30 Tage)
ARN
ARN am 17 Mai 2020
Kommentiert: Star Strider am 18 Mai 2020
Hi all,
Attached is the csv file. I tried everything but can't seem to read the file. Most people in the Mathworks are saying that xlsread should do the trick but it didn't for me.
Please let me know what else i can do to read it

Akzeptierte Antwort

Star Strider
Star Strider am 17 Mai 2020
I had no problems reading it and plotting it with xlsread (although I cannot determine if the data are plotted correctly because I have no idea what the data represent). (I am using R2020a.)
Try this:
D = xlsread('Radar_frames_Mat.csv');
x = D(1,2:end);
y = D(2:end,1);
figure
mesh(x, y, D(2:end,2:end))
grid on
  4 Kommentare
ARN
ARN am 18 Mai 2020
Thanks, xls worked fine with R2020a.
Star Strider
Star Strider am 18 Mai 2020
As always, my pleasure!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by