フィルターのクリア

findNodes() command is giving ''Error using mesh (line 58) Not enough input arguments.'' error/message.

1 回表示 (過去 30 日間)
SAMAR SINGHAL
SAMAR SINGHAL 2024 年 4 月 3 日
回答済み: Aiswarya 2024 年 4 月 19 日
I have imported a .stl geometry and want to extarct nodes and edges 1 and 2. following code has been used. I am getting error as ''Error using mesh (line 58)''.
Not enough input arguments.
model = fegeometry("circle.STL")
model = generateMesh(model);
Ne = findNodes(mesh,"region","Edge",[1 2]);

回答 (1 件)

Aiswarya
Aiswarya 2024 年 4 月 19 日
Hi Samar,
The error you are getting is because "mesh" is an inbuilt function in MATLAB and as the error message also says "Not enough input arguments", it indicates you have not declared it as a variable in your script. Based on your code it seems you have assigned the variable "model" as the output of the "generateMesh" function instead of "mesh". The error can be resolved by referring to this modified code:
model = fegeometry("circle.STL")
mesh = generateMesh(model);
Ne = findNodes(mesh,"region","Edge",[1 2]);

カテゴリ

Help Center および File ExchangeGeometry and Mesh についてさらに検索

製品


リリース

R2024a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by