delete Simulink(ex-sum) block and connect inport block to a bus using MATLAB coding

2 visualizzazioni (ultimi 30 giorni)
Hello All,
I am currently new to matlab coding and I am trying to write a script to programatically delete the summation block and constant block, the lines connecting constant block to sum block and sum block to bus and then connect the inport 3 to the bus creator. Can someone please suggest an idea on how to approach this. Also would really appreciate if you provide some examples or matlab commands that I can use for reference. Please let me know.

Risposta accettata

Fangjun Jiang
Fangjun Jiang il 2 Giu 2022
Something like this. You can follow the document of these functions.
pSumBlock='PathToSumBlock';
hLine=get_param(pSumBlock,'LineHandles')
delete_line(h)
delete_block(pSumBlock)
delete_block('PathtoConstantBlock')
add_line()

Più risposte (0)

Categorie

Scopri di più su Simulink Functions in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by