How do I use add_block for adding ROS library content like Blank Messages, Publish and Subscribe block programatically using Simulink? (Using MATLAB R2019a)

1 vue (au cours des 30 derniers jours)
This is how my code looks :
clc;clear all;close all;
open_system(new_system('Test'));
system_name = 'Test';
load_system('Robotics System Toolbox')
add_block('Robotics System Toolbox/ROS/Blank Message','Test/msg_1')
I get the following error when I run the above code :
Error using load_system (line 21)
'Robotics System Toolbox' is not a valid model name because it is not a valid MATLAB function name.
Error in test (line 6)
load_system('Robotics System Toolbox') - Show complete stack trace
If I do not include the load_system function :
clc;clear all;close all;
open_system(new_system('Test'));
system_name = 'Test';
%load_system('Robotics System Toolbox')
add_block('Robotics System Toolbox/ROS/Blank Message','Test/msg_1')
, I get a similar error :
Error using test (line 7)
Error due to multiple causes.
Caused by:
Error using test (line 7)
'Robotics System Toolbox' is not a valid model name because it is not a valid MATLAB function name.
Error using test (line 7)
There is no block named 'Robotics System Toolbox/ROS/Blank Message'
Any suggestions on how to fix this?
  1 commentaire
AKSHAY SARVESH
AKSHAY SARVESH le 26 Juil 2020
After adding escape characters to the code,
clc;clear all;close all;
open_system(new_system('Test'));
system_name = 'Test';
%load_system('Robotics System Toolbox')
add_block('Robotics\ System\ Toolbox/ROS/Blank\ Message','Test/msg_1')
the error still persists
Error using test (line 7)
Error due to multiple causes.
Caused by:
Error using test (line 7)
'Robotics\ System\ Toolbox' is not a valid model name because it is not a valid MATLAB function name.
Error using test (line 7)
There is no block named 'Robotics\ System\ Toolbox/ROS/Blank\ Message'

Connectez-vous pour commenter.

Réponse acceptée

Cam Salzberger
Cam Salzberger le 27 Juil 2020
Hey Akshay,
I haven't tested this, but I believe that you should use (or at least can use) the library name that contains the block rather than the toolbox name. Try:
add_block('robotlib/Subscribe')
-Cam
  3 commentaires
Cam Salzberger
Cam Salzberger le 28 Juil 2020
If you hover over the block in the Library Browser, it should show the "path" to the block (lib/sublib/block).
-Cam

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Network Connection and Exploration dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by