Home
last modified time | relevance | path

Searched refs:stdp (Results 1 – 25 of 111) sorted by relevance

12345

/dports/math/octave-forge-nnet/nnet/inst/
H A Dtrastd.m19 ## @deftypefn {Function File} {}@var{pn} = trastd (@var{p},@var{meanp},@var{stdp})
25 ## @code{stdp} : vector with standardization parameters of prestd(...)
28 ## stdp = [1.2910; 1.2910];
31 ## pn = trastd(p,meanp,stdp);
40 function [Pn] = trastd(Pp,meanp,stdp)
50 [nRowsII, nColumnsII] = size(stdp);
52 findZeros = find(stdp==0);
59 stdp = stdp.*nequal + 1*equal; variable
62 Pn = (Pp-meanp*rowOnes)./(stdp*rowOnes);
74 ## >> [pn,meanp,stdp] = prestd(mInput)
[all …]
H A Dprestd.m19 ## @deftypefn {Function File} {}[@var{pn},@var{meanp},@var{stdp},@var{tn},@var{meant},@var{stdt}] =…
27 function [pn,meanp,stdp,tn,meant,stdt] = prestd(Pp,Tt)
48 stdp = std(Pp')'; variable
53 [nRowsII, nColumnsII] = size(stdp);
55 findZeros = find(stdp==0); # returning a vector containing index where zeros are
61 stdpZero = stdp.*nequal + 1*rowZeros;
64 stdpZero = stdp;
99 %! [pn,meanp,stdp] = prestd(Pp);
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/tests/interactive/
H A Doutput.cpp389 wxStandardPathsBase& stdp = wxStandardPaths::Get(); in TestStandardPaths() local
390 wxPrintf(wxT("Config dir (sys):\t%s\n"), stdp.GetConfigDir()); in TestStandardPaths()
391 wxPrintf(wxT("Config dir (user):\t%s\n"), stdp.GetUserConfigDir()); in TestStandardPaths()
392 wxPrintf(wxT("Data dir (sys):\t\t%s\n"), stdp.GetDataDir()); in TestStandardPaths()
394 wxPrintf(wxT("Data dir (user):\t%s\n"), stdp.GetUserDataDir()); in TestStandardPaths()
396 wxPrintf(wxT("Documents dir:\t\t%s\n"), stdp.GetDocumentsDir()); in TestStandardPaths()
403 wxPrintf(wxT("Executable path:\t%s\n"), stdp.GetExecutablePath()); in TestStandardPaths()
404 wxPrintf(wxT("Plugins dir:\t\t%s\n"), stdp.GetPluginsDir()); in TestStandardPaths()
405 wxPrintf(wxT("Resources dir:\t\t%s\n"), stdp.GetResourcesDir()); in TestStandardPaths()
407 stdp.GetLocalizedResourcesDir(wxT("fr"))); in TestStandardPaths()
[all …]
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/samples/widgets/
H A Ddirctrl.cpp280 wxStandardPathsBase& stdp = wxStandardPaths::Get(); in OnRadioBox() local
291 path = stdp.GetConfigDir(); in OnRadioBox()
295 path = stdp.GetDataDir(); in OnRadioBox()
299 path = stdp.GetDocumentsDir(); in OnRadioBox()
303 path = stdp.GetLocalDataDir(); in OnRadioBox()
307 path = stdp.GetPluginsDir(); in OnRadioBox()
311 path = stdp.GetResourcesDir(); in OnRadioBox()
315 path = stdp.GetUserConfigDir(); in OnRadioBox()
319 path = stdp.GetUserDataDir(); in OnRadioBox()
323 path = stdp.GetUserLocalDataDir(); in OnRadioBox()
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/samples/widgets/
H A Ddirctrl.cpp280 wxStandardPathsBase& stdp = wxStandardPaths::Get(); in OnRadioBox() local
291 path = stdp.GetConfigDir(); in OnRadioBox()
295 path = stdp.GetDataDir(); in OnRadioBox()
299 path = stdp.GetDocumentsDir(); in OnRadioBox()
303 path = stdp.GetLocalDataDir(); in OnRadioBox()
307 path = stdp.GetPluginsDir(); in OnRadioBox()
311 path = stdp.GetResourcesDir(); in OnRadioBox()
315 path = stdp.GetUserConfigDir(); in OnRadioBox()
319 path = stdp.GetUserDataDir(); in OnRadioBox()
323 path = stdp.GetUserLocalDataDir(); in OnRadioBox()
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/samples/widgets/
H A Ddirctrl.cpp280 wxStandardPathsBase& stdp = wxStandardPaths::Get(); in OnRadioBox() local
291 path = stdp.GetConfigDir(); in OnRadioBox()
295 path = stdp.GetDataDir(); in OnRadioBox()
299 path = stdp.GetDocumentsDir(); in OnRadioBox()
303 path = stdp.GetLocalDataDir(); in OnRadioBox()
307 path = stdp.GetPluginsDir(); in OnRadioBox()
311 path = stdp.GetResourcesDir(); in OnRadioBox()
315 path = stdp.GetUserConfigDir(); in OnRadioBox()
319 path = stdp.GetUserDataDir(); in OnRadioBox()
323 path = stdp.GetUserLocalDataDir(); in OnRadioBox()
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/samples/widgets/
H A Ddirctrl.cpp280 wxStandardPathsBase& stdp = wxStandardPaths::Get(); in OnRadioBox() local
291 path = stdp.GetConfigDir(); in OnRadioBox()
295 path = stdp.GetDataDir(); in OnRadioBox()
299 path = stdp.GetDocumentsDir(); in OnRadioBox()
303 path = stdp.GetLocalDataDir(); in OnRadioBox()
307 path = stdp.GetPluginsDir(); in OnRadioBox()
311 path = stdp.GetResourcesDir(); in OnRadioBox()
315 path = stdp.GetUserConfigDir(); in OnRadioBox()
319 path = stdp.GetUserDataDir(); in OnRadioBox()
323 path = stdp.GetUserLocalDataDir(); in OnRadioBox()
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/tests/interactive/
H A Doutput.cpp399 wxStandardPathsBase& stdp = wxStandardPaths::Get(); in TestStandardPaths() local
400 wxPrintf(wxT("Config dir (sys):\t%s\n"), stdp.GetConfigDir().c_str()); in TestStandardPaths()
401 wxPrintf(wxT("Config dir (user):\t%s\n"), stdp.GetUserConfigDir().c_str()); in TestStandardPaths()
402 wxPrintf(wxT("Data dir (sys):\t\t%s\n"), stdp.GetDataDir().c_str()); in TestStandardPaths()
404 wxPrintf(wxT("Data dir (user):\t%s\n"), stdp.GetUserDataDir().c_str()); in TestStandardPaths()
406 wxPrintf(wxT("Documents dir:\t\t%s\n"), stdp.GetDocumentsDir().c_str()); in TestStandardPaths()
407 wxPrintf(wxT("Executable path:\t%s\n"), stdp.GetExecutablePath().c_str()); in TestStandardPaths()
408 wxPrintf(wxT("Plugins dir:\t\t%s\n"), stdp.GetPluginsDir().c_str()); in TestStandardPaths()
409 wxPrintf(wxT("Resources dir:\t\t%s\n"), stdp.GetResourcesDir().c_str()); in TestStandardPaths()
411 stdp.GetLocalizedResourcesDir(wxT("fr")).c_str()); in TestStandardPaths()
[all …]
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/tests/interactive/
H A Doutput.cpp399 wxStandardPathsBase& stdp = wxStandardPaths::Get(); in TestStandardPaths() local
400 wxPrintf(wxT("Config dir (sys):\t%s\n"), stdp.GetConfigDir().c_str()); in TestStandardPaths()
401 wxPrintf(wxT("Config dir (user):\t%s\n"), stdp.GetUserConfigDir().c_str()); in TestStandardPaths()
402 wxPrintf(wxT("Data dir (sys):\t\t%s\n"), stdp.GetDataDir().c_str()); in TestStandardPaths()
404 wxPrintf(wxT("Data dir (user):\t%s\n"), stdp.GetUserDataDir().c_str()); in TestStandardPaths()
406 wxPrintf(wxT("Documents dir:\t\t%s\n"), stdp.GetDocumentsDir().c_str()); in TestStandardPaths()
407 wxPrintf(wxT("Executable path:\t%s\n"), stdp.GetExecutablePath().c_str()); in TestStandardPaths()
408 wxPrintf(wxT("Plugins dir:\t\t%s\n"), stdp.GetPluginsDir().c_str()); in TestStandardPaths()
409 wxPrintf(wxT("Resources dir:\t\t%s\n"), stdp.GetResourcesDir().c_str()); in TestStandardPaths()
411 stdp.GetLocalizedResourcesDir(wxT("fr")).c_str()); in TestStandardPaths()
[all …]
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/samples/widgets/
H A Ddirctrl.cpp333 wxStandardPathsBase& stdp = wxStandardPaths::Get(); in OnRadioBox() local
344 path = stdp.GetConfigDir(); in OnRadioBox()
348 path = stdp.GetDataDir(); in OnRadioBox()
352 path = stdp.GetDocumentsDir(); in OnRadioBox()
356 path = stdp.GetLocalDataDir(); in OnRadioBox()
360 path = stdp.GetPluginsDir(); in OnRadioBox()
364 path = stdp.GetResourcesDir(); in OnRadioBox()
368 path = stdp.GetUserConfigDir(); in OnRadioBox()
372 path = stdp.GetUserDataDir(); in OnRadioBox()
376 path = stdp.GetUserLocalDataDir(); in OnRadioBox()
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/samples/widgets/
H A Ddirctrl.cpp312 wxStandardPathsBase& stdp = wxStandardPaths::Get(); in OnRadioBox() local
323 path = stdp.GetConfigDir(); in OnRadioBox()
327 path = stdp.GetDataDir(); in OnRadioBox()
331 path = stdp.GetDocumentsDir(); in OnRadioBox()
335 path = stdp.GetLocalDataDir(); in OnRadioBox()
339 path = stdp.GetPluginsDir(); in OnRadioBox()
343 path = stdp.GetResourcesDir(); in OnRadioBox()
347 path = stdp.GetUserConfigDir(); in OnRadioBox()
351 path = stdp.GetUserDataDir(); in OnRadioBox()
355 path = stdp.GetUserLocalDataDir(); in OnRadioBox()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/samples/widgets/
H A Ddirctrl.cpp312 wxStandardPathsBase& stdp = wxStandardPaths::Get(); in OnRadioBox() local
323 path = stdp.GetConfigDir(); in OnRadioBox()
327 path = stdp.GetDataDir(); in OnRadioBox()
331 path = stdp.GetDocumentsDir(); in OnRadioBox()
335 path = stdp.GetLocalDataDir(); in OnRadioBox()
339 path = stdp.GetPluginsDir(); in OnRadioBox()
343 path = stdp.GetResourcesDir(); in OnRadioBox()
347 path = stdp.GetUserConfigDir(); in OnRadioBox()
351 path = stdp.GetUserDataDir(); in OnRadioBox()
355 path = stdp.GetUserLocalDataDir(); in OnRadioBox()
/dports/math/blis/blis-0.8.1/build/
H A Dirun.py209 if len( aperf[i] ) > 1: stdp = statistics.stdev( aperf[i] )
210 else: stdp = 0.0
239 print( newline % ( float(minp), float(avgp), float(maxp), float(stdp) ) )
267 if len( aperf[i] ) > 1: stdp = statistics.stdev( aperf[i] )
268 else: stdp = 0.0
296 print( newline % ( float(minp), float(avgp), float(maxp), float(stdp) ) )
/dports/net/rpki-client/rpki-client-portable-7.6/openbsd/src/lib/libc/gen/
H A Dsyslog_r.c78 char *stdp = NULL, tbuf[TBUF_SIZE], fmt_cpy[FMT_SIZE]; in __vsyslog_r() local
117 stdp = p; in __vsyslog_r()
178 iov[0].iov_base = stdp; in __vsyslog_r()
179 iov[0].iov_len = cnt > stdp - tbuf ? cnt - (stdp - tbuf) : 0; in __vsyslog_r()
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/genmod/tests/results/
H A Dpoisson_weights_v2.do45 predict predict_linpred_std, stdp
75 predict predict_linpred_std, stdp
105 predict predict_linpred_std, stdp
136 predict predict_linpred_std, stdp
167 predict predict_linpred_std, stdp
187 predict predict_linpred_std, stdp
346 predict fittedvalues_se, stdp
370 predict predict_std, stdp
392 predict predict_std, stdp
415 predict predict_std, stdp
[all …]
/dports/graphics/dataplot/dataplot-2c1b27601a3b7523449de612613eadeead9a8f70/lib/macros/
H A D4PLOT_NOARGS.DP38 let string stdp = 4
39 if dp exists; let string stdp = ^dp; end if
43 print "stdp = ^stdp"
57 . -----Step 11: Generate the 4-plot (need stresp, stq, stdp, and strespq (derived))-----
156 . print "stdp = ^stdp"
158 set write decimals ^stdp
159 . print "stdp = ^stdp"
173 set write dcimals ^stdp
/dports/math/frobby/frobby-0.9.1/test/testScripts/
H A Drun_euler_test69 for stdp in $stdPivots; do
70 $testhelper euler $tmpFile $test.euler -pivot std -stdPivot $stdp $*
72 $testhelper euler $tmpFile $test.euler -pivot std -stdPivot $stdp -stats $*
75 -stdPivot widen_${stdp} $* # composite strategy
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/duration/tests/results/
H A Dkm_cox1.do34 * predict predictall, hr xb stdp basesurv basechazard basehc mgale csnell deviance ldisplace lmax e…
36 >>> for i in 'hr xb stdp basesurv basechazard basehc mgale csnell deviance ldisplace lmax effects'.…
40 predict stdp, stdp
51 outsheet hr xb stdp basesurv basechazard basehc mgale csnell deviance ldisplace lmax using "surv_co…
/dports/science/pynn/PyNN-0.10.0/test/unittests/
H A Dtest_standardmodels.py200 stdp = STDPMechanism(td, wd, None, 0.5)
201 assert_equal(stdp.timing_dependence, td)
202 assert_equal(stdp.weight_dependence, wd)
203 assert_equal(stdp.voltage_dependence, None)
204 assert_equal(stdp.dendritic_delay_fraction, 0.5)
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/tsa/tests/results/
H A Darima111_results.py1072 stdp = np.array([ variable
1303 stdp=stdp,
H A Darima111nc_css_results.py1064 stdp = np.array([ variable
1295 stdp=stdp,
H A Darima111nc_results.py1064 stdp = np.array([ variable
1295 stdp=stdp,
H A Darima112_css_results.py1082 stdp = np.array([ variable
1313 stdp=stdp,
H A Darima112_results.py1082 stdp = np.array([ variable
1313 stdp=stdp,
H A Darima112nc_css_results.py1072 stdp = np.array([
1303 stdp=stdp,

12345