You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -161,7 +175,7 @@ function addPlot(collectionOfNames::Tuple, sigTable, grid::Bool, xLabel::Bool, x
161
175
if nLegend <= maxLegend
162
176
PyPlot.legend()
163
177
elseif nsubFigures ==1
164
-
@info"plot(..): No legend in figure $figure, since curve number (= $nLegend) > maxLegend (= $maxLegend)\nCan be fixed by plot(..., maxLegend=$nLegend)"
178
+
@info"plot(..): No legend in figure $figure, since curve number (= $nLegend) > maxLegend (= $maxLegend)\nCan be fixed by plot(..., maxLegend=$nLegend)"
165
179
else
166
180
@info"plot(..): No legend in subfigure ($i,$j) of figure $figure, since curve number (= $nLegend) > maxLegend (= $maxLegend)\nCan be fixed by plot(..., maxLegend=$nLegend)"
167
181
end
@@ -191,7 +205,7 @@ function plot(sigTable, names::AbstractMatrix; heading::AbstractString="", grid:
191
205
192
206
PyPlot.pygui(true) # Use separate plot windows (no inline plots)
193
207
194
-
208
+
195
209
ifisnothing(sigTable)
196
210
@info"The call of SignalTables.plot(sigTable, ...) is ignored, since the first argument is nothing."
197
211
return
@@ -209,7 +223,7 @@ function plot(sigTable, names::AbstractMatrix; heading::AbstractString="", grid:
209
223
for i =1:nrow
210
224
xLabel = i == nrow
211
225
for j =1:ncol
212
-
# "reuse" gives a warning
226
+
# "reuse" gives a warning
213
227
# MatplotlibDeprecationWarning: Adding an axes using the same arguments as a previous axes currently reuses the earlier instance. In a future version, a new instance will always be created and returned. Meanwhile, this warning can be suppressed, and the future behavior ensured, by passing a unique label to each axes instance.
0 commit comments