%--------------------------------------------------------------------------
% INPUT.ACQU
%--------------------------------------------------------------------------
% Acquisition of a mesh file.
%--------------------------------------------------------------------------
% Syntax
%--------------------------------------------------------------------------
ME = INPUT.ACQU(file_name,format)
%--------------------------------------------------------------------------
% Description
%--------------------------------------------------------------------------
% The ACQU static method of the INPUT class is used to read a mesh file.
%--------------------------------------------------------------------------
% Input arguments
%--------------------------------------------------------------------------
% file_name : STRING - path to the file to input
% format : STRING - format of the mesh file. It is can equal to:
% - MAIL : used when .mail file are inputted (Cast3M format)
% - MSH2 : used when .msh file are inputted (GMSH format)
%--------------------------------------------------------------------------
% Output arguments
%--------------------------------------------------------------------------
% ME : MESH object
%--------------------------------------------------------------------------
% Example
%--------------------------------------------------------------------------
FILE = '6.mail';
ME = INPUT.ACQU(FILE,'MAIL')
ME =
MESH with properties:
point: [1x4 POINT]
group: [1x8 GROUP]
nodes: [1x238 NODE]