delete_line
Delete line from Simulink model
Description
Examples
Remove Line Using Block Port Names
For the model vdp
, remove the line connecting the Product block with the Gain block.
load_system('vdp'); delete_line('vdp','Product/1','Mu/1');
Remove Line Using Line Handle
For the model vdp
, remove a line using the line handle. You can get the line handle using different techniques.
load_system('vdp'); h = get_param('vdp/Mu','LineHandles'); delete_line(h.Outport(1));
Get a line handle when you create the line. Delete the line using that handle.
a = add_line('vdp','Mu/1','Sum/2'); delete_line(a)
Delete a Line Using a Point
You can use a point on the line to delete the whole line.
Find the port coordinates for the block Mu in the model vdp
.
open_system('vdp'); mu = get_param('vdp/Mu','PortConnectivity'); mu.Position
ans = 1×2
190 150
ans = 1×2
225 150
The line that connects the Mu block to the Sum block starts at the output port, which is at (225,150). You can use any point to the right of that point along the same x-axis to delete the line.
delete_line('vdp',[230,150]);
Delete Segments of Branched Lines
Use delete_line
with branched lines to
remove the segment for any connection.
Open the model vdp
.
open_system('vdp');
Delete the signal line segment that connects the x1
block to the Out1
block.
delete_line('vdp','x1/1','Out1/1')
Delete the signal line segment that connects the x2
block to the Mux
block.
delete_line('vdp','x2/1','Mux/2')
Delete the line segment that connects the x2
block to
the Product
block.
delete_line('vdp','x2/1','Product/2')
Input Arguments
sys
— Model or subsystem to delete line from
character vector
Model or subsystem to delete the line from, specified as a character vector.
Example: 'vdp'
,
'f14/Controller'
out
— Block output port to delete line from
block/port name or number character vector | port handle
Block output port to delete line from, specified as either:
The block name, a slash, and the port name or number. Most block ports are numbered from top to bottom or from left to right. For a state port, use the port name State instead of a port number.
The port handle that you want to delete the line from.
Use 'PortHandles'
with get_param
to get the handles.
Example: 'Mu/1'
,
'Subsystem/2'
in
— Block input port to delete line from
block/port name or number character vector | port handle
Block input port to delete line from, specified as either:
The block name, a slash, and the port name or number. The port name on:
An enabled subsystem is Enable.
A triggered subsystem is Trigger.
If Action and Switch Case Action subsystems is Action.
The port handle that you want to delete the line from.
Use 'PortHandles'
with get_param
to get handles.
Example: 'Mu/1'
, 'Subsystem/2'
point
— Point on the line you want to delete
1-by-2 matrix
Point that falls on the line you want to delete, specified as a 1-by-2 matrix.
Example: [150 200]
lineHandle
— Handle of the line you want to delete
handle
Handle of the line you want to delete. You can get the line handle by
using get_param
with the
'LineHandles'
option or by assigning the line to a
handle when you create it programmatically.
Version History
Introduced before R2006a
Abrir ejemplo
Tiene una versión modificada de este ejemplo. ¿Desea abrir este ejemplo con sus modificaciones?
Comando de MATLAB
Ha hecho clic en un enlace que corresponde a este comando de MATLAB:
Ejecute el comando introduciéndolo en la ventana de comandos de MATLAB. Los navegadores web no admiten comandos de MATLAB.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)