Filter löschen
Filter löschen

problem in install add on m.file for solidworks simmechanics link

2 Ansichten (letzte 30 Tage)
hi all i need to install add on m.file for solidworks simmechanics link , but when i donwloaded the m.file , for matlab r2013 w64 it came with the error in the first lines after checking java , there is another line for checking nargin , the arguments and say :
% check args
if (nargin ~= 1)
error('Usage: install_addon <addon_zip_file>')
end
and for this part the matlab gives me the error :
Error using install_addon (line 15)
Usage: install_addon <addon_zip_file>
what's the problem ?

Akzeptierte Antwort

Jan
Jan am 18 Feb. 2014
The message tells you, that the function install_addon was called with either none or more than one input argument. Please post the complete error message, which should contain the calling command also.
A bold guess is, that you have a space in the path of the ZIP file, then try:
install_addon('<addon_zip_file>')
with the parts inside > and < replaced accordingly.
  2 Kommentare
iyad salameh
iyad salameh am 29 Jun. 2015
Bearbeitet: Walter Roberson am 14 Jan. 2016
this is the error i get
Error using install_addon (line 15)
Usage: install_addon <addon_zip_file>
Error in run (line 64)
evalin('caller', [script ';']);
Steven Lord
Steven Lord am 29 Jun. 2015
Show the EXACT, FULL command you typed that caused that error to display. Jan and I think you typed this:
install_addon
or something like this, where "c:\temp\path with spaces\addon_zip_file.zip" is the location of the ZIP file and that location contains spaces.
install_addon c:\temp\path with spaces\addon_zip_file.zip

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Simscape Multibody finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by