Home
last modified time | relevance | path

Searched refs:n_plots (Results 1 – 11 of 11) sorted by relevance

/dports/editors/marker/Marker-2020.04.04.2/src/scidown/src/charter/src/
H A Dcharter.c15 new_chart->n_plots = 0; in initialize_empty_chart()
148 if (!c->n_plots) in chart_get_max_x()
153 for (i = 1; i < c->n_plots; i++) in chart_get_max_x()
176 if (!c->n_plots) in chart_get_min_x()
181 for (i = 1; i < c->n_plots; i++) in chart_get_min_x()
204 if (!c->n_plots) in chart_get_max_y()
209 for (i = 1; i < c->n_plots; i++) in chart_get_max_y()
234 if (!c->n_plots) in chart_get_min_y()
239 for (i = 1; i < c->n_plots; i++) in chart_get_min_y()
266 return ++c->n_plots; in chart_add_plot()
H A Dcharter.h80 unsigned int n_plots; member
H A Dsvg.c634 for (i = 0; i<c->n_plots;i++) in plots_to_svg()
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/graphics/
H A Dcorrelation.py191 n_plots = len(dcorrs)
193 nrows = int(np.ceil(n_plots / float(ncols)))
197 if n_plots < 4:
198 nrows, ncols = 1, n_plots
200 nrows = int(np.sqrt(n_plots))
201 ncols = int(np.ceil(n_plots / float(nrows)))
/dports/math/py-python-picard/python-picard-0.7/examples/
H A Dplot_ica_eeg.py52 n_plots = 10 variable
55 models = [data[:n_plots], Y[order[:n_plots][::-1]]]
/dports/audio/aubio/aubio-0.4.9/python/demos/
H A Ddemo_mel-energy.py55 n_plots = len(energies.T) variable
58 … ax = plt.axes ( [0.1, 0.75 - ((i+1) * 0.65 / n_plots), 0.8, 0.65 / n_plots], sharex = wave )
/dports/audio/py-aubio/aubio-0.4.9/python/demos/
H A Ddemo_mel-energy.py55 n_plots = len(energies.T) variable
58 … ax = plt.axes ( [0.1, 0.75 - ((i+1) * 0.65 / n_plots), 0.8, 0.65 / n_plots], sharex = wave )
/dports/science/code_saturne/code_saturne-7.1.0/src/fvm/
H A Dfvm_to_time_plot.c103 int n_plots; /* Number of associated plots */ member
346 if (p_id >= w->n_plots) { in _field_output()
348 w->n_plots += 1; in _field_output()
349 BFT_REALLOC(w->tp, w->n_plots, cs_time_plot_t *); in _field_output()
483 w->n_plots = 0; in fvm_to_time_plot_init_writer()
552 for (int i = 0; i < w->n_plots; i++) in fvm_to_time_plot_finalize_writer()
/dports/science/kst2/kst-plot-38eddb5322a1d557f9d86ea95d456d76272941e3/src/libkstapp/
H A Dplotitemmanager.cpp80 int n_plots=0, n_tied=0; in toggleAllTiedZoom() local
90 ++n_plots; in toggleAllTiedZoom()
97 if (double(n_tied) > (double)n_plots*0.5) { in toggleAllTiedZoom()
H A Dsharedaxisboxitem.cpp212 int n_plots = plotList.size(); in nRows() local
213 for (int i_plot = 0; i_plot<n_plots; i_plot++) { in nRows()
225 int n_plots = plotList.size(); in nCols() local
226 for (int i_plot = 0; i_plot<n_plots; i_plot++) { in nCols()
239 int n_plots = plotList.size(); in breakShare() local
240 for (int i_plot = 0; i_plot<n_plots; i_plot++) { in breakShare()
260 for (int i_plot = 0; i_plot<n_plots; i_plot++) { in breakShare()
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/examples/step-35/
H A Dstep-35.cc438 void run(const bool verbose = false, const unsigned int n_plots = 10);