Error in creating Class

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 commentaires

Daniel Shub
Daniel Shub le 2 Déc 2011
Are you trying to convert a structure theStruct into an object of class ncitem?
chandrakanth V
chandrakanth V le 6 Déc 2011
sorry for the delay in reply but yes i am trying to do that

Connectez-vous pour commenter.

Réponses (1)

Honglei Chen
Honglei Chen le 2 Déc 2011

0 votes

You can try
temp = struct2cell(theStruct);
ncitem(temp{:});

1 commentaire

chandrakanth V
chandrakanth V le 6 Déc 2011
thanks chen, i will try and let you know as soon as i can

Connectez-vous pour commenter.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by