How to ncread a variable with spaces in its title?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Mikolaj Jankowski
am 13 Feb. 2019
Kommentiert: Mikolaj Jankowski
am 13 Feb. 2019
I have a fairly simple problem, however its solution keeps evading me. Data I have has a variable whose name has spaces in it.
I tried ignoring the spaces, putting it in brackets, adding / symbol etc, but so far nothing of the kind worked.
I would greatly appeciate a suggestion
Title of variable is 'sea ice concentration'
for k=2013:2013 %2018
si_masam_aug = ncread(['Masam2_' int2str(k) 'august.nc'],sea\ ice\ concentration);
si_masam_sept = ncread(['Masam2_' int2str(k) 'september.nc'],sea\ ice\ concentration);
masam_aug{k-2012} = si_masam_aug;
masam_sept{k-2012} = si_masam_sept;
end
0 Kommentare
Akzeptierte Antwort
Pavel
am 13 Feb. 2019
Could you please show your data?
Have you tried to use quotes?
ncread(...,'sea ice concentration')
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu NetCDF finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!