updated documentation
parent
f671b52986
commit
656d5ab258
|
@ -2,12 +2,21 @@ function hdf_fielddata = ReadHDF5FieldData(file)
|
||||||
% function hdf_fielddata = ReadHDF5FieldData(file)
|
% function hdf_fielddata = ReadHDF5FieldData(file)
|
||||||
%
|
%
|
||||||
% returns:
|
% returns:
|
||||||
|
% hdf_fielddata.time
|
||||||
% hdf_fielddata.names
|
% hdf_fielddata.names
|
||||||
% hdf_fielddata.values
|
% hdf_fielddata.values
|
||||||
%
|
%
|
||||||
|
% example: values of timestep 12:
|
||||||
|
% hdf_fielddata.values{12}: array (x,y,z,polarization)
|
||||||
|
%
|
||||||
|
% plot z-field component along y-direction for timestep 12:
|
||||||
|
% plot( hdf_fielddata.values{12}(1,:,1,3) )
|
||||||
|
%
|
||||||
% openEMS matlab interface
|
% openEMS matlab interface
|
||||||
% -----------------------
|
% -----------------------
|
||||||
% author: Thorsten Liebig
|
% author: Thorsten Liebig
|
||||||
|
%
|
||||||
|
% See also ReadHDF5Mesh
|
||||||
|
|
||||||
info = hdf5info(file);
|
info = hdf5info(file);
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,8 @@ function hdf_mesh = ReadHDF5Mesh(file)
|
||||||
% openEMS matlab interface
|
% openEMS matlab interface
|
||||||
% -----------------------
|
% -----------------------
|
||||||
% author: Thorsten Liebig
|
% author: Thorsten Liebig
|
||||||
|
%
|
||||||
|
% See also ReadHDF5FieldData
|
||||||
|
|
||||||
info = hdf5info(file);
|
info = hdf5info(file);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue