6 lines
87 B
Mathematica
6 lines
87 B
Mathematica
|
|
function DrawGap(plotGap)
|
||
|
|
x=find(plotGap);
|
||
|
|
ts=size(x,2);
|
||
|
|
plot(1:ts,plotGap(1:ts));
|
||
|
|
|
||
|
|
end
|