Ignore:
Timestamp:
05/05/21 15:40:27 (4 years ago)
Author:
Eric.Larour
Message:

CHG: implemented templated version of the love_core routine, to allow
for IssmComplex and (IssmQuad tuypes in the future). Created new IssmComplex
type.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/m/solve/loadresultfromdisk.m ΒΆ

    r25300 r26242  
    4949                                        N=fread(fid,1,'int');
    5050                                        field=fread(fid,[N M],'int')';
     51                                elseif type==5,
     52                                        N=fread(fid,1,'int');
     53                                        fieldr=fread(fid,[N M],'double')';
     54                                        fieldi=fread(fid,[N M],'double')';
     55                                        field=complex(fieldr,fieldi);
    5156                                else
    5257                                        error(['cannot read data of type ' num2str(type) ]);
Note: See TracChangeset for help on using the changeset viewer.