how can i solved this error as written below

2 views (last 30 days)
>> file='pr_day_MPI-ESM-MR_historical_r1i1p1_19500101-19591231.nc';
>> ncdisp (pr_day_MPI-ESM-MR_historical_r1i1p1_19500101-19591231.nc,C:/Users/PATEL ASHISH/Desktop,netcdf);
ncdisp (pr_day_MPI-ESM-MR_historical_r1i1p1_19500101-19591231.nc,C:/Users/PATEL ASHISH/Desktop,netcdf);
Error: Unexpected MATLAB expression.

Accepted Answer

Walter Roberson
Walter Roberson on 24 Apr 2019
ncdisp(file)
or perhaps
fullname = fullfile( 'C:\Users\PATELASHISH\Desktop', file );
ncdisp(fullname)

More Answers (0)

Categories

Find more on Data Import and Analysis 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!