Home
last modified time | relevance | path

Searched refs:sample2 (Results 1 – 25 of 1299) sorted by relevance

12345678910>>...52

/dports/science/eccodes/eccodes-2.23.0-Source/tests/
H A Dgrib2_templates.sh19 sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl
43 $tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=76 $sample2 $temp
46 $tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=77 $sample2 $temp
49 $tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=78 $sample2 $temp
52 $tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=79 $sample2 $temp
55 $tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=80 $sample2 $temp
64 $tools_dir/grib_set -s productDefinitionTemplateNumber=83 $sample2 $temp
71 $tools_dir/grib_set -s productDefinitionTemplateNumber=55 $sample2 $temp
74 $tools_dir/grib_set -s productDefinitionTemplateNumber=56 $sample2 $temp
80 $tools_dir/grib_set -s productDefinitionTemplateNumber=53 $sample2 $temp
[all …]
H A Dgrib2_chemicals_aerosols.sh16 sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl
18 latest=`${tools_dir}/grib_get -p tablesVersionLatest $sample2`
24 ${tools_dir}/grib_set -s tablesVersion=$latest,is_chemical=1 $sample2 $temp
29 ${tools_dir}/grib_set -s tablesVersion=$latest,is_chemical_srcsink=1 $sample2 $temp
34 ${tools_dir}/grib_set -s tablesVersion=$latest,is_chemical_distfn=1 $sample2 $temp
39 ${tools_dir}/grib_set -s tablesVersion=$latest,is_aerosol=1 $sample2 $temp
44 ${tools_dir}/grib_set -s tablesVersion=$latest,is_aerosol_optical=1 $sample2 $temp
53 ${tools_dir}/grib_set -s tablesVersion=$latest,stepType=accum,is_chemical=1 $sample2 $temp
58 ${tools_dir}/grib_set -s tablesVersion=$latest,stepType=accum,is_chemical_srcsink=1 $sample2 $temp
63 ${tools_dir}/grib_set -s tablesVersion=$latest,stepType=accum,is_chemical_distfn=1 $sample2 $temp
[all …]
H A Dgrib_cfNames.sh16 sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl
18 ${tools_dir}/grib_set -s discipline=192,parameterCategory=128,parameterNumber=137 $sample2 $temp
21 ${tools_dir}/grib_set -s discipline=0,parameterNumber=20,parameterCategory=2 $sample2 $temp
23 ${tools_dir}/grib_set -s paramId=145 $sample2 $temp
25 ${tools_dir}/grib_set -s paramId=137 $sample2 $temp
31 ${tools_dir}/grib_set -s paramId=145 $sample2 $temp
43 ${tools_dir}/grib_set -s paramId=151154 $sample2 $temp
45 ${tools_dir}/grib_set -s discipline=192,parameterCategory=151,parameterNumber=153 $sample2 $temp
48 ${tools_dir}/grib_set -s discipline=0,parameterCategory=1,parameterNumber=10 $sample2 $temp
51 ${tools_dir}/grib_set -s discipline=0,parameterCategory=1,parameterNumber=11 $sample2 $temp
/dports/math/openturns/openturns-1.18/python/test/
H A Dt_Sample_slice.py66 sample2 = ot.Sample(sample) variable
67 sample2 *= [10.] * d
71 sample3[:] = sample2
74 sample3[2:4] = sample2[2:4]
77 sample3[1:8:2] = sample2[1:8:2]
87 sample3[3, 4] = sample2[3, 4]
92 sample3[3, :] = sample2[3, :]
95 sample3[3, 1:4:2] = sample2[3, 1:4:2]
105 sample3[:, 3] = sample2[:, 3]
108 sample3[2:7:2, 3] = sample2[2:7:2, 3]
[all …]
H A Dt_Sample_operators.py17 sample2 = ot.Sample(0, 2) variable
18 sample2.setName('Sample2')
19 sample2.setDescription(['a0', 'a1'])
20 sample2.add([30., 40.])
21 sample2.add([31., 41.])
22 sample2.add([32., 42.])
23 print('sample2=', repr(sample2))
26 summation = ot.Sample(sample1 + sample2)
32 sample3 = ot.Sample(sample2)
33 sample4 = ot.Sample(sample2)
[all …]
H A Dt_Sample_computation.py72 sample2 = Sample(sample) variable
73 sample2.sortInPlace()
74 print("Sort (in place)=", repr(sample2))
77 sample2 = Sample(sample) variable
78 sample2.sortAccordingToAComponentInPlace(0)
93 sample2 = Sample(sample) variable
94 sample2.sortUniqueInPlace()
95 print("Unique (in place)=", repr(sample2))
98 sample2 = Sample(sample) variable
99 sample2.sortUniqueInPlace()
[all …]
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/main/java/org/apache/commons/math3/stat/inference/
H A DTTest.java85 checkSampleData(sample2); in pairedT()
182 return pairedTTest(sample1, sample2) < alpha; in pairedTTest()
276 checkSampleData(sample2); in homoscedasticT()
317 checkSampleData(sample2); in t()
321 sample1.length, sample2.length); in t()
630 checkSampleData(sample2); in tTest()
634 sample1.length, sample2.length); in tTest()
677 checkSampleData(sample2); in homoscedasticTTest()
680 StatUtils.mean(sample2), in homoscedasticTTest()
745 return tTest(sample1, sample2) < alpha; in tTest()
[all …]
/dports/devel/android-tools-fastboot/platform_system_core-platform-tools-29.0.5/extras/simpleperf/
H A DSampleComparator.h37 int function_name(const EntryT* sample1, const EntryT* sample2) { \
38 return Compare(sample1->compare_part, sample2->compare_part); \
49 int function_name(const EntryT* sample1, const EntryT* sample2) { \
50 return strcmp(sample1->compare_part, sample2->compare_part); \
66 int CompareTotalPeriod(const EntryT* sample1, const EntryT* sample2) { in CompareTotalPeriod() argument
68 uint64_t period2 = sample2->period + sample2->accumulated_period; in CompareTotalPeriod()
73 int ComparePeriod(const EntryT* sample1, const EntryT* sample2) { in ComparePeriod() argument
74 return Compare(sample2->period, sample1->period); in ComparePeriod()
94 bool operator()(const EntryT* sample1, const EntryT* sample2) const { in operator()
96 int ret = func(sample1, sample2); in operator()
[all …]
/dports/audio/ft2play/ft2play-5730b16/
H A Dsnd_masm.h100 sample2 = smpPtr[1] << 8; \
101 LERP(sample, sample2, pos) \
102 sample2 <<= (28-16); \
109 sample2 = smpPtr[1]; \
110 LERP(sample, sample2, pos) \
111 sample2 <<= (28-16); \
120 sample2 = smpPtr[1] << 8; \
121 LERP(sample, sample2, pos) \
122 sample2 <<= (28-16); \
130 sample2 = smpPtr[1]; \
[all …]
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/test/java/org/apache/commons/math3/stat/inference/
H A DTTestTest.java170 for (int i = 0; i < sample2.length; i++) { in testTwoSampleTHeterscedastic()
171 sampleStats2.addValue(sample2[i]); in testTwoSampleTHeterscedastic()
176 testStatistic.t(sample1, sample2), 1E-10); in testTwoSampleTHeterscedastic()
184 testStatistic.tTest(sample1, sample2, 0.2)); in testTwoSampleTHeterscedastic()
188 !testStatistic.tTest(sample1, sample2, 0.1)); in testTwoSampleTHeterscedastic()
193 testStatistic.tTest(sample1, sample2, .95); in testTwoSampleTHeterscedastic()
251 double[] sample2 = {4, 6, 8, 10, 16}; in testTwoSampleTHomoscedastic() local
257 for (int i = 0; i < sample2.length; i++) { in testTwoSampleTHomoscedastic()
258 sampleStats2.addValue(sample2[i]); in testTwoSampleTHomoscedastic()
275 double[] sample2 = {4d, 5d}; in testSmallSamples() local
[all …]
/dports/math/openturns/openturns-1.18/lib/test/
H A Dt_Sample_operators.cxx57 Sample sample2(0, 2); in main() local
58 sample2.setName("Sample2"); in main()
70 sample2.add(point4); in main()
71 sample2.add(point5); in main()
72 sample2.add(point6); in main()
73 fullprint << "sample2=" << sample2 << std::endl; in main()
76 const Sample sum(sample1 + sample2); in main()
77 const Sample diff(sample2 - sample1); in main()
82 Sample sample3(sample2); in main()
83 Sample sample4(sample2); in main()
/dports/archivers/bzip/bzip-0.21/
H A DMakefile8 ./bzip -Q -2 < sample2.ref > sample2.rbz || exit 1
10 ./bunzip -Q < sample2.bz > sample2.tst || exit 1
12 cmp sample2.bz sample2.rbz || exit 1
14 cmp sample2.tst sample2.ref || exit 1
/dports/print/tgif2tex/tgif2tex-2.13/
H A DMakefile8 all: how-to-use.ps sample2.dvi
19 sample2.tex: sample2.obj
20 ${TGIF2TEX} -slide sample2.obj
22 sample2.dvi: sample2.tex
23 ${TEX_CMD} sample2.tex
26 /bin/rm -f *.dvi *.aux *.log *.tps *.dps *.ps *.eps *.png *~ *.bak sample2.tex
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/deps/Dependencies/bzip2-1.0.6/
H A Dmakefile.msc29 .\\bzip2 -2 < sample2.ref > sample2.rb2
32 .\\bzip2 -d < sample2.bz2 > sample2.tst
41 fc sample2.bz2 sample2.rb2
44 fc sample2.tst sample2.ref
55 del sample2.rb2
58 del sample2.tst
/dports/games/libretro-fuse/fuse-libretro-8b51f87/bzip2/
H A Dmakefile.msc29 .\\bzip2 -2 < sample2.ref > sample2.rb2
32 .\\bzip2 -d < sample2.bz2 > sample2.tst
41 fc sample2.bz2 sample2.rb2
44 fc sample2.tst sample2.ref
55 del sample2.rb2
58 del sample2.tst
/dports/games/libretro-gw/gw-libretro-2be30ba/bzip2/
H A Dmakefile.msc29 .\\bzip2 -2 < sample2.ref > sample2.rb2
32 .\\bzip2 -d < sample2.bz2 > sample2.tst
41 fc sample2.bz2 sample2.rb2
44 fc sample2.tst sample2.ref
55 del sample2.rb2
58 del sample2.tst
/dports/devel/boost-docs/boost_1_72_0/tools/boost_install/test/iostreams/bzip2-1.0.6/
H A Dmakefile.msc29 .\\bzip2 -2 < sample2.ref > sample2.rb2
32 .\\bzip2 -d < sample2.bz2 > sample2.tst
41 fc sample2.bz2 sample2.rb2
44 fc sample2.tst sample2.ref
55 del sample2.rb2
58 del sample2.tst
/dports/archivers/bzip2/bzip2-1.0.8/
H A Dmakefile.msc29 .\\bzip2 -2 < sample2.ref > sample2.rb2
32 .\\bzip2 -d < sample2.bz2 > sample2.tst
41 fc sample2.bz2 sample2.rb2
44 fc sample2.tst sample2.ref
55 del sample2.rb2
58 del sample2.tst
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/tools/boost_install/test/iostreams/bzip2-1.0.8/
H A Dmakefile.msc29 .\\bzip2 -2 < sample2.ref > sample2.rb2
32 .\\bzip2 -d < sample2.bz2 > sample2.tst
41 fc sample2.bz2 sample2.rb2
44 fc sample2.tst sample2.ref
55 del sample2.rb2
58 del sample2.tst
/dports/editors/encryptpad/EncryptPad-0.5.0.1/deps/bzip2/
H A Dmakefile.msc29 .\\bzip2 -2 < sample2.ref > sample2.rb2
32 .\\bzip2 -d < sample2.bz2 > sample2.tst
41 fc sample2.bz2 sample2.rb2
44 fc sample2.tst sample2.ref
55 del sample2.rb2
58 del sample2.tst
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/rust/bzip2-sys/bzip2-1.0.6/
H A Dmakefile.msc29 .\\bzip2 -2 < sample2.ref > sample2.rb2
32 .\\bzip2 -d < sample2.bz2 > sample2.tst
41 fc sample2.bz2 sample2.rb2
44 fc sample2.tst sample2.ref
55 del sample2.rb2
58 del sample2.tst
/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/cargo-crates/bzip2-sys-0.1.9+1.0.8/bzip2-1.0.8/
H A Dmakefile.msc29 .\\bzip2 -2 < sample2.ref > sample2.rb2
32 .\\bzip2 -d < sample2.bz2 > sample2.tst
41 fc sample2.bz2 sample2.rb2
44 fc sample2.tst sample2.ref
55 del sample2.rb2
58 del sample2.tst
/dports/sysutils/deltup/bzip2-1.0.2/
H A Dmakefile.msc29 .\\bzip2 -2 < sample2.ref > sample2.rb2
32 .\\bzip2 -d < sample2.bz2 > sample2.tst
41 fc sample2.bz2 sample2.rb2
44 fc sample2.tst sample2.ref
55 del sample2.rb2
58 del sample2.tst
/dports/sysutils/deltup/bzip2-1.0.3/
H A Dmakefile.msc29 .\\bzip2 -2 < sample2.ref > sample2.rb2
32 .\\bzip2 -d < sample2.bz2 > sample2.tst
41 fc sample2.bz2 sample2.rb2
44 fc sample2.tst sample2.ref
55 del sample2.rb2
58 del sample2.tst
/dports/textproc/ripgrep-all/ripgrep-all-0.9.6/cargo-crates/bzip2-sys-0.1.8+1.0.8/bzip2-1.0.8/
H A Dmakefile.msc29 .\\bzip2 -2 < sample2.ref > sample2.rb2
32 .\\bzip2 -d < sample2.bz2 > sample2.tst
41 fc sample2.bz2 sample2.rb2
44 fc sample2.tst sample2.ref
55 del sample2.rb2
58 del sample2.tst

12345678910>>...52