Hello,
I since a lot of people have asked for Matlab Automation: i figured it out and it was kind of weired why handle.Run() didn't work. But the good news is invoke works fine.
path_to_input='C:\Programme\Fastfieldsolvers\Fasthenry2\Samples\Automation\Office\';
ax=actxserver('FastHenry2.Document');
ax.invoke('Run',['"' path_to_input 'coils1.inp"']);
while(ax.invoke('IsRunning'))
pause(0.1);
end
ax.invoke('GetInductance')
ax.invoke('Quit');
ax=[];
have fun with it, it to me quite forever to find it out.
eactor