Plotting Binary step function

7 次查看(过去 30 天)
Linu Pinto
Linu Pinto 2020-1-22
回答: Robert U 2020-1-22
How to plot the following step function function by avoiding vertical lines between discontinuities
x=[-10,10]
y=sin(x)
z=1 if y<0
z=0 if y>=0
plot(x,z);

回答(1 个)

Robert U
Robert U 2020-1-22
Hi Linu Pinto,
You could plot each section separately.
x = -10:0.1:10;
y = sin(x);
z(y<0) = 1;
z(y>=0) = 0;
nZNew =[0 find(diff(z) ~= 0) length(z)];
zNew = arrayfun(@(nStart,nEnd) z(nStart+1:nEnd),nZNew(1:end-1),nZNew(2:end),'UniformOutput',false);
xNew = arrayfun(@(nStart,nEnd) x(nStart+1:nEnd),nZNew(1:end-1),nZNew(2:end),'UniformOutput',false);
fh = figure;
ah = axes(fh);
hold(ah,'on');
cellfun(@(xIn,zIn) plot(xIn,zIn,'-blue'),xNew,zNew)
Kind regards,
Robert

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by