updated documentation

pull/1/head
Sebastian Held 2010-05-28 15:13:45 +02:00
parent f671b52986
commit 656d5ab258
2 changed files with 11 additions and 0 deletions

View File

@ -2,12 +2,21 @@ function hdf_fielddata = ReadHDF5FieldData(file)
% function hdf_fielddata = ReadHDF5FieldData(file)
%
% returns:
% hdf_fielddata.time
% hdf_fielddata.names
% 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
% -----------------------
% author: Thorsten Liebig
%
% See also ReadHDF5Mesh
info = hdf5info(file);

View File

@ -9,6 +9,8 @@ function hdf_mesh = ReadHDF5Mesh(file)
% openEMS matlab interface
% -----------------------
% author: Thorsten Liebig
%
% See also ReadHDF5FieldData
info = hdf5info(file);