File: harp_export.m

package info (click to toggle)
harp 1.29-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 57,028 kB
  • sloc: xml: 475,954; ansic: 175,442; sh: 4,898; yacc: 2,186; javascript: 1,510; python: 1,148; makefile: 656; lex: 591
file content (17 lines) | stat: -rw-r--r-- 536 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function varargout = harp_export(varargin)
% HARP_EXPORT  Export a HARP product to a file.
%
%   HARP_EXPORT(PRODUCT, FILEPATH, FORMAT) will export the given product
%   to the file that is specified by filepath. The export formats that
%   are supported are:
%     - hdf4
%     - hdf5
%     - netcdf
%   You should provide the format as a string to HARP_EXPORT. If the
%   export file already exists it will be overwritten.
%
%   See also HARP_IMPORT
%

% Call HARP_MATLAB.MEX to do the actual work.
harp_matlab('EXPORT',varargin{:});