LoginSignup
0
1

More than 5 years have passed since last update.

MATLAB > load tetmesh > tetとX > nodeとelement

Last updated at Posted at 2017-11-10

例1

load tetmesh;
trep = TriRep(tet, X);

load tetmeshをするとtet, Xが利用できるようだ。
これらは何か?

https://jp.mathworks.com/help/pde/ug/create-and-view-3-d-geometry.html?searchHighlight=tetmesh&s_tid=doc_srchtitle
3-D Geometry from a Finite Element Mesh

load tetmesh

Examine the node and element sizes.

size(tet),size(X)

上記の文章より、以下と推測する。

  • tet: node
  • X: element
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1