How do you read iges files in matlab?
39 ビュー (過去 30 日間)
古いコメントを表示
I tried it with the IGES toolbox: https://www.mathworks.com/matlabcentral/fileexchange/13253-iges-toolbox
close all;clear all; clc
% example.m plots an IGES CAD-object
% Compile the c-files
makeIGESmex;
% Load parameter data from IGES-file.
[ParameterData,EntityType,numEntityType,unknownEntityType,numunknownEntityType]=iges2matlab('IGESfiles/60.igs');
% Plot the IGES object
plotIGES(ParameterData,1);
I get the following error:
Undefined function or variable 'makeIGESmex'.
Error in iges2matlabexample (line 5)
makeIGESmex;
I saved the igesToolbox.mltbx file to the current directory, so that can't be the issue.
VR2014a
回答 (1 件)
Hornett
2024 年 7 月 24 日
To install and verify the IGES toolbox in MATLAB, follow these steps:Step 1: Install the Toolbox
Install via MATLAB Add-Ons:
- Open MATLAB.
- Go to the "Home" tab.
- Click on "Add-Ons" and then "Get Add-Ons".
- In the Add-On Explorer, search for "IGES Toolbox".
- Click on the toolbox and then click "Add" to install it.
Install from File:
- If you have the .mltbx file, you can install it directly.
- In MATLAB, go to the "Home" tab.
- Click on "Add-Ons" and then "Install from File".
- Select the .mltbx file you downloaded.
Verify Installation
Check Installed Add-Ons:
- In MATLAB, go to the "Home" tab.
- Click on "Add-Ons" and then "Manage Add-Ons".
- Ensure that the IGES toolbox appears in the list of installed add-ons.
Verify Toolbox Path:
- Ensure that the toolbox is added to your MATLAB path.
- You can check this by running:
which iges2matlab
This should return the path to the iges2matlab function if the toolbox is correctly installed. I hope it helps
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Introduction to Installation and Licensing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!