From: anila alex on
hi

Is there any way to open files with .grd extension in MATLAB
thanks
Anila
From: Wayne King on
"anila alex" <anila.atmos(a)gmail.com> wrote in message <hm0ede$oiv$1(a)fred.mathworks.com>...
> hi
>
> Is there any way to open files with .grd extension in MATLAB
> thanks
> Anila

Anila, does this help you?

http://www.mathworks.com/matlabcentral/fileexchange/20880-surfer-grid-importexport

Wayne
From: us on
"anila alex" <anila.atmos(a)gmail.com> wrote in message <hm0ede$oiv$1(a)fred.mathworks.com>...
> hi
>
> Is there any way to open files with .grd extension in MATLAB
> thanks
> Anila

a hint:

% certainly with
help fopen;
help fread;
help fclose;
% depending upon their anatomy
help textread;

us