Extract simulations results at specific points

Numerical methods and mathematical models of Elmer
mzenker
Posts: 1999
Joined: 07 Dec 2009, 11:49
Location: Germany

Re: Extract simulations results at specific points

Post by mzenker »

Hi,

thanks for the information - good to know that in Matlab and Octave, the mesh.nodes file can be directly loaded!
It works also in Scilab (www.scilab.org):

Code: Select all

loadmatfile("mesh.nodes")
x = mesh(:,3)
y = mesh(:,4)
z = mesh(:,5)
Is it possible that also in Matlab/Octave, the coordinates are in columns 3,4 and 5?

Matthias
raback
Site Admin
Posts: 4812
Joined: 22 Aug 2009, 11:57
Antispam: Yes
Location: Espoo, Finland
Contact:

Re: Extract simulations results at specific points

Post by raback »

Yes, sorry columns 3-5, not 1-3. -Peter
Post Reply