Error in creating Class
Show older comments
I have been working with IPIX radar data files for my project work. I am stuck up with using ncitem.m files which is used to extract files using netcdf command.
result = class(theStruct, 'ncitem');
The above statement is throwing error as
" The class function must be called from a class constructor".
It will be very helpful if somebody could post a solution for me to get around the problem.
Thanks in Advance.
2 Comments
Daniel Shub
on 2 Dec 2011
Are you trying to convert a structure theStruct into an object of class ncitem?
chandrakanth V
on 6 Dec 2011
Answers (1)
Honglei Chen
on 2 Dec 2011
You can try
temp = struct2cell(theStruct);
ncitem(temp{:});
1 Comment
chandrakanth V
on 6 Dec 2011
Categories
Find more on NetCDF 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!