Error when importing STL file into Matlab
古いコメントを表示
Hi,
When I try to import my STL file into MATLAB I get en error message. What am I doing wrong?
figure
gm = importGeometry('Torus.stl');
pdegplot(gm)
Error: Check for missing argument or incorrect argument data type in call to function 'importGeometry'.
採用された回答
その他の回答 (1 件)
Sulaymon Eshkabilov
2022 年 2 月 21 日
You are missing one important part in your command, see e.g.:
pdem = createpde(); % Missing
GM = importGeometry(pdem,'BEAM.stl'); % See how to add the missing piece
pdegplot(gm, 'FaceLabels','on', 'FaceAlpha',0.75)
1 件のコメント
Konvictus177
2022 年 2 月 21 日
編集済み: Konvictus177
2022 年 2 月 21 日
カテゴリ
ヘルプ センター および File Exchange で Geometry and Mesh についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!