2017-10-19 3 views

Antwort

3

Nein, ist es nicht, und wahrscheinlich wird es nie sein.

Eine einfache Abhilfe ist plot(y) mit plot(y[y.>0]) zu ersetzen oder plot(x,y) mit

inds = (x .> 0) .& (y .> 0) 
plot(x[inds],y[inds]) 
+0

Aber man kann sie selbst filtern. –

+0

Richtig, hinzugefügt, dass zur Antwort. – gTcV

Verwandte Themen