how do I set the property "RemoteConnectivity" == 1

25 views (last 30 days)
I'm trying to set the following property to true in order to allow MATLAB Online to connect to the 'MATLAB Connector' app installed on my M1 Mac.
matlab.internal.feature("RemoteConnectivity")
I tried the following:
setpref(matlab.internal.feature("RemoteConnectivity"), 1)
Error using setpref (line 31)
Not enough input arguments.
setpref(matlab.internal.feature,"RemoteConnectivity", 1)
Error using matlab.internal.feature
Too many output arguments.
any ideas?
  1 Comment
Eric Prandovsky
Eric Prandovsky on 14 Nov 2024 at 23:04
I'm still unable to connect to the MATLAB Connector app.... Desktop MATLAB it is... for now

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 13 Nov 2024 at 21:54
feature("RemoteConnectivity", 1)

More Answers (0)

Community Treasure Hunt

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

Start Hunting!