How to properly run a catia macro through matlab?

6 ビュー (過去 30 日間)
David Mrozek
David Mrozek 2021 年 3 月 13 日
コメント済み: Mario Malic 2021 年 3 月 13 日
Hello everyone,
I have created a bunch of txt files named TEST in matlab and renamed its extension to .catvbs through this code:
directory = 'C:\Folder1\Programm';
fileList = dir(fullfile(directory,'*.txt'));
for i = 1:numel(fileList)
file = fullfile(directory, fileList(i).name);
[tempDir, tempFile] = fileparts(file);
status = copyfile(file, fullfile(tempDir, [tempFile, '.catvbs']));
end
Now I would like to run one makro for a test purpose from matlab via a COM interface since I am working from a windows pc. However, I am unable to find a working command that lets me run this makro. It would be great if you could help me in achiving this goal.
  1 件のコメント
Mario Malic
Mario Malic 2021 年 3 月 13 日
This is the CATIA related question, search on their forum 3dsexperience.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeVariables についてさらに検索

タグ

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by