你已经派生过 geomesh
镜像自地址
https://gitee.com/sduem/geomesh.git
已同步 2025-08-03 18:26:51 +08:00
20 行
487 B
Matlab
20 行
487 B
Matlab
|
|
|
|
% Start the 'COMSOL Multiphysics with MATLAB' interfaces
|
|
% Required: '...\comsolmphserver.exe' and '...\Multiphysics\mli' file address
|
|
% You can also manually launch the executable COMSOL Multiphysics with MATLAB. exe
|
|
|
|
path = pwd;
|
|
|
|
try
|
|
mphtags -show
|
|
warning('Already connected to a server!');
|
|
catch
|
|
winopen('D:\Software\COMSOL60\Multiphysics\bin\win64\comsolmphserver.exe');
|
|
cd 'D:\Software\COMSOL60\Multiphysics\mli';
|
|
mphstart;
|
|
end
|
|
cd(path);
|
|
|
|
|