From: Matthieu Le Gall on 24 Mar 2010 01:50 Good afternoon, I am wondering what's the best function to use to read tecplot files on Matlab. Those tecplot files are ASCII files containing several values of physical quantities at many nodes AND connectivities between those thousands of nodes. I was thinking about using the load function but I would then lose the information about the connectivity between the nodes. Any idea? Thank you in advance.
From: us on 24 Mar 2010 04:25 "Matthieu Le Gall" <legallmatthieu(a)hotmail.fr> wrote in message <hoc96s$bmo$1(a)fred.mathworks.com>... > Good afternoon, > I am wondering what's the best function to use to read tecplot files on Matlab. > Those tecplot files are ASCII files containing several values of physical quantities at many nodes AND connectivities between those thousands of nodes. > > I was thinking about using the load function but I would then lose the information about the connectivity between the nodes. > > Any idea? > Thank you in advance. unfortunately... % 1) the easy step help textread; % <- slurp your file's content... % 2) the tedious step % now, you have to write your own parser to dissect the content... us
|
Pages: 1 Prev: ask about plot Next: max no. of function evaluation VS. iterations |