Home
last modified time | relevance | path

Searched refs:iloc (Results 101 – 125 of 1383) sorted by relevance

12345678910>>...56

/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/tsa/statespace/tests/
H A Dtest_conserve_memory.py35 endog = dta['infl'].iloc[:20]
71 exog = dta['realint'].iloc[:20]
101 endog.iloc[0, 0] = np.nan
102 endog.iloc[4:6, :] = np.nan
131 endog.iloc[0, 0] = np.nan
132 endog.iloc[4:6, :] = np.nan
158 endog = dta['infl'].iloc[:20]
231 endog = dta['infl'].iloc[:20]
242 endog = dta['infl'].iloc[:20]
258 endog = dta['infl'].iloc[:20]
[all …]
H A Dtest_kalman.py173 self.true_states.iloc[:, 0], 4
177 self.true_states.iloc[:, 1], 4
181 self.true_states.iloc[:, 2], 4
233 self.true_states.iloc[:, 0],
238 self.true_states.iloc[:, 1],
243 self.true_states.iloc[:, 2],
285 self.true_states.iloc[:, 0],
290 self.true_states.iloc[:, 1],
295 self.true_states.iloc[:, 2],
347 self.true_states.iloc[:, 0], 4
[all …]
H A Dtest_cfa_simulation_smoothing.py21 dta = np.log(dta[['realcons', 'realgdp', 'cpi']]).diff().iloc[1:] * 400
34 endog.iloc[0:50, :] = np.nan
36 endog.iloc[0:50, 0] = np.nan
38 endog.iloc[0:50, 0] = np.nan
39 endog.iloc[19:70, 1] = np.nan
40 endog.iloc[39:90, 2] = np.nan
41 endog.iloc[119:130, 0] = np.nan
42 endog.iloc[119:130, 2] = np.nan
43 endog.iloc[-10:, :] = np.nan
46 endog = endog.iloc[:, 2]
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/indexes/datetimes/
H A Dtest_partial_slicing.py81 expected = ser.iloc[:5]
120 assert result == s.iloc[0]
130 tm.assert_series_equal(result, s.iloc[:24])
140 tm.assert_series_equal(result, s.iloc[: 60 * 4])
143 tm.assert_series_equal(result, s.iloc[:60])
145 assert s["2005-1-1 20:00"] == s.iloc[0]
154 tm.assert_series_equal(result, s.iloc[:60])
157 tm.assert_series_equal(result, s.iloc[:60])
159 assert s[Timestamp("2005-1-1 23:59:00")] == s.iloc[0]
318 expected = nonmonotonic.iloc[:0]
[all …]
/dports/comms/wsjtz/wsjtx/lib/
H A Dmsk144spd.f9016 integer, dimension(1) :: iloc local
95 iloc=maxloc(tonespec,ismask)
96 ihpk=iloc(1)
103 iloc=maxloc(tonespec,ismask)
104 ilpk=iloc(1)
128 iloc=maxloc(detmet(1:nstep))
129 il=iloc(1)
142 iloc=maxloc(detmet2(1:nstep))
143 il=iloc(1)
H A Dmsk40spd.f9016 integer, dimension(1) :: iloc local
95 iloc=maxloc(tonespec,ismask)
96 ihpk=iloc(1)
103 iloc=maxloc(tonespec,ismask)
104 ilpk=iloc(1)
128 iloc=maxloc(detmet(1:nstep))
129 il=iloc(1)
142 iloc=maxloc(detmet2(1:nstep))
143 il=iloc(1)
/dports/science/liggghts/LIGGGHTS-PUBLIC-3.8.0-26-g6e873439/lib/hotint/HotInt_V1/ElementsLib/beams/
H A DBeam3D.cpp348 if(iloc >= 1 && iloc <=3) in XGL()
353 else if (iloc >= 4 && iloc <=6) in XGL()
358 else if (iloc >= 7 && iloc <=9) in XGL()
372 if(iloc >= 1 && iloc <=3) in XGPL()
377 else if (iloc >= 4 && iloc <=6) in XGPL()
382 else if (iloc >= 7 && iloc <=9) in XGPL()
396 if(iloc >= 1 && iloc <=3) in XGDL()
401 else if (iloc >= 4 && iloc <=6) in XGDL()
420 if(iloc >= 1 && iloc <=3) in XGPDL()
849 if(iloc >= 1 && iloc <=3) in XGPPL()
[all …]
/dports/science/liggghts/LIGGGHTS-PUBLIC-3.8.0-26-g6e873439/lib/hotint/HotInt_V1/ElementsLib/shells/
H A DANCFSimpleThinPlate3D.h182 virtual const double XG_dc(int iloc, TComputeDrawInitFlag flag) const in XG_dc() argument
187 return q_ref(iloc) + GetXact(ltg.Get(iloc)); in XG_dc()
189 return q_ref(iloc) + GetDrawValue(ltg.Get(iloc)); in XG_dc()
193 return q_ref(iloc) + scaling*GetDrawValue(ltg.Get(iloc)); in XG_dc()
196 return q_ref(iloc); in XG_dc()
198 return q_ref(iloc) + GetXInit(iloc); in XG_dc()
200 return xg_cached(iloc); in XG_dc()
209 virtual const double XGP_dc(int iloc, TComputeDrawInitFlag flag) const in XGP_dc() argument
211 return XG_dc(iloc+SOS(), flag); in XGP_dc()
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/series/indexing/
H A Dtest_get.py164 assert ser.get(4) == ser.iloc[2]
167 expected = ser.iloc[[2, 3]]
171 expected = ser.iloc[[0, 1]]
178 assert ser.get("c") == ser.iloc[2]
181 expected = ser.iloc[[1, 2, 3]]
187 assert ser.get(4) == ser.iloc[4]
188 assert ser.get(-1) == ser.iloc[-1]
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/indexing/interval/
H A Dtest_interval_new.py28 expected = s.iloc[3:5]
82 expected = s.iloc[1:4]
87 expected = s.iloc[[1, 1, 2, 1]]
90 expected = s.iloc[2:5]
106 expected = s.iloc[:3]
112 expected = s.iloc[3:]
133 expected = s.iloc[:3]
146 expected = s.iloc[0:4:2]
246 expected = s.iloc[0:1]
254 expected = s.iloc[[0, 1]]
[all …]
/dports/math/spooles-mpich/spooles.2.2_SHARED/Chv/src/
H A Dassemble.c29 int ii, iloc, jcol, jj, jjfirst, jjlast, in Chv_addChevron() local
111 for ( iloc = 0 ; iloc < nD ; iloc++ ) { in Chv_addChevron()
112 if ( colind[iloc] == ichv ) { in Chv_addChevron()
116 if ( iloc == nD ) { in Chv_addChevron()
181 diag = Chv_diagLocation(chv, iloc) - iloc ; in Chv_addChevron()
204 diag = Chv_diagLocation(chv, iloc) - 2*iloc ; in Chv_addChevron()
262 jjfirst = iloc ; in Chv_addChevron()
279 chvind[ii] = -jj + iloc ; in Chv_addChevron()
293 chvind[ii] = jj - iloc ; in Chv_addChevron()
305 diag = Chv_diagLocation(chv, iloc) ; in Chv_addChevron()
[all …]
/dports/math/spooles-mpich/spooles.2.2/Chv/src/
H A Dassemble.c29 int ii, iloc, jcol, jj, jjfirst, jjlast, in Chv_addChevron() local
111 for ( iloc = 0 ; iloc < nD ; iloc++ ) { in Chv_addChevron()
112 if ( colind[iloc] == ichv ) { in Chv_addChevron()
116 if ( iloc == nD ) { in Chv_addChevron()
181 diag = Chv_diagLocation(chv, iloc) - iloc ; in Chv_addChevron()
204 diag = Chv_diagLocation(chv, iloc) - 2*iloc ; in Chv_addChevron()
262 jjfirst = iloc ; in Chv_addChevron()
279 chvind[ii] = -jj + iloc ; in Chv_addChevron()
293 chvind[ii] = jj - iloc ; in Chv_addChevron()
305 diag = Chv_diagLocation(chv, iloc) ; in Chv_addChevron()
[all …]
/dports/math/spooles/spooles.2.2_SHARED/Chv/src/
H A Dassemble.c29 int ii, iloc, jcol, jj, jjfirst, jjlast, in Chv_addChevron() local
111 for ( iloc = 0 ; iloc < nD ; iloc++ ) { in Chv_addChevron()
112 if ( colind[iloc] == ichv ) { in Chv_addChevron()
116 if ( iloc == nD ) { in Chv_addChevron()
181 diag = Chv_diagLocation(chv, iloc) - iloc ; in Chv_addChevron()
204 diag = Chv_diagLocation(chv, iloc) - 2*iloc ; in Chv_addChevron()
262 jjfirst = iloc ; in Chv_addChevron()
279 chvind[ii] = -jj + iloc ; in Chv_addChevron()
293 chvind[ii] = jj - iloc ; in Chv_addChevron()
305 diag = Chv_diagLocation(chv, iloc) ; in Chv_addChevron()
[all …]
/dports/math/spooles/spooles.2.2/Chv/src/
H A Dassemble.c29 int ii, iloc, jcol, jj, jjfirst, jjlast, in Chv_addChevron() local
111 for ( iloc = 0 ; iloc < nD ; iloc++ ) { in Chv_addChevron()
112 if ( colind[iloc] == ichv ) { in Chv_addChevron()
116 if ( iloc == nD ) { in Chv_addChevron()
181 diag = Chv_diagLocation(chv, iloc) - iloc ; in Chv_addChevron()
204 diag = Chv_diagLocation(chv, iloc) - 2*iloc ; in Chv_addChevron()
262 jjfirst = iloc ; in Chv_addChevron()
279 chvind[ii] = -jj + iloc ; in Chv_addChevron()
293 chvind[ii] = jj - iloc ; in Chv_addChevron()
305 diag = Chv_diagLocation(chv, iloc) ; in Chv_addChevron()
[all …]
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/tsa/statespace/
H A Dnews.py140 iloc = self.revisions_iloc
141 if len(iloc) > 0:
146 self.revisions_ix = iloc.copy()
151 iloc = self.updates_iloc
152 if len(iloc) > 0:
157 self.updates_ix = iloc.copy()
591 impacts.iloc[:, 0] = impacts.iloc[:, 0].map(str)
594 impacts.iloc[:, :2] = impacts.iloc[:, :2].applymap(str)
595 impacts.iloc[:, 2:] = impacts.iloc[:, 2:].applymap(
880 data.iloc[:, 2:] = data.iloc[:, 2:].applymap(
[all …]
/dports/net/mpich/mpich-3.4.3/modules/hwloc/hwloc/
H A Dmemattrs.c319 if (iloc->type != imi->initiator.type) in match_internal_location()
321 switch (iloc->type) { in match_internal_location()
336 iloc->type = location->type; in to_internal_location()
364 location->type = iloc->type; in from_internal_location()
366 switch (iloc->type) { in from_internal_location()
663 if (match_internal_location(iloc, imi)) { in hwloc__memattr_target_get_initiator()
676 new->initiator = *iloc; in hwloc__memattr_target_get_initiator()
677 if (iloc->type == HWLOC_LOCATION_TYPE_CPUSET) { in hwloc__memattr_target_get_initiator()
698 struct hwloc_internal_location_s iloc; in hwloc__memattr_get_initiator_from_location() local
919 struct hwloc_internal_location_s iloc, *ilocp; in hwloc_memattr_set_value() local
[all …]
/dports/net/mpich/mpich-3.4.3/src/pm/hydra2/libhydra/topo/hwloc/hwloc/hwloc/
H A Dmemattrs.c319 if (iloc->type != imi->initiator.type) in match_internal_location()
321 switch (iloc->type) { in match_internal_location()
336 iloc->type = location->type; in to_internal_location()
364 location->type = iloc->type; in from_internal_location()
366 switch (iloc->type) { in from_internal_location()
663 if (match_internal_location(iloc, imi)) { in hwloc__memattr_target_get_initiator()
676 new->initiator = *iloc; in hwloc__memattr_target_get_initiator()
677 if (iloc->type == HWLOC_LOCATION_TYPE_CPUSET) { in hwloc__memattr_target_get_initiator()
698 struct hwloc_internal_location_s iloc; in hwloc__memattr_get_initiator_from_location() local
919 struct hwloc_internal_location_s iloc, *ilocp; in hwloc_memattr_set_value() local
[all …]
/dports/net/mpich/mpich-3.4.3/src/pm/hydra/tools/topo/hwloc/hwloc/hwloc/
H A Dmemattrs.c319 if (iloc->type != imi->initiator.type) in match_internal_location()
321 switch (iloc->type) { in match_internal_location()
336 iloc->type = location->type; in to_internal_location()
364 location->type = iloc->type; in from_internal_location()
366 switch (iloc->type) { in from_internal_location()
663 if (match_internal_location(iloc, imi)) { in hwloc__memattr_target_get_initiator()
676 new->initiator = *iloc; in hwloc__memattr_target_get_initiator()
677 if (iloc->type == HWLOC_LOCATION_TYPE_CPUSET) { in hwloc__memattr_target_get_initiator()
698 struct hwloc_internal_location_s iloc; in hwloc__memattr_get_initiator_from_location() local
919 struct hwloc_internal_location_s iloc, *ilocp; in hwloc_memattr_set_value() local
[all …]
/dports/devel/hwloc2/hwloc-2.5.0/hwloc/
H A Dmemattrs.c319 if (iloc->type != imi->initiator.type) in match_internal_location()
321 switch (iloc->type) { in match_internal_location()
336 iloc->type = location->type; in to_internal_location()
364 location->type = iloc->type; in from_internal_location()
366 switch (iloc->type) { in from_internal_location()
663 if (match_internal_location(iloc, imi)) { in hwloc__memattr_target_get_initiator()
676 new->initiator = *iloc; in hwloc__memattr_target_get_initiator()
677 if (iloc->type == HWLOC_LOCATION_TYPE_CPUSET) { in hwloc__memattr_target_get_initiator()
698 struct hwloc_internal_location_s iloc; in hwloc__memattr_get_initiator_from_location() local
919 struct hwloc_internal_location_s iloc, *ilocp; in hwloc_memattr_set_value() local
[all …]
/dports/devel/ga/ga-5.8/global/examples/scf/
H A Dscf.F235 iloc = i - lo(1) + 1
378 iloc = i - lo(1) + 1
419 iloc = i - lo(1) + 1
420 tfock(iloc,jloc) = 0.0d00
603 iloc = i-lo(1) + 1
617 f_ij(iloc,jloc) = f_ij(iloc,jloc)
619 f_ik(iloc,kloc) = f_ik(iloc,kloc)
739 iloc = i - lo(1) + 1
775 iloc = i - lo(1) + 1
777 work(iloc,jloc) = work(iloc,jloc) + shift
[all …]
/dports/science/nwchem/nwchem-7b21660b82ebd85ef659f6fba7e1e73433b0bd0a/src/mm/
H A Dmm_input.F121 integer iloc(4)
132 iloc = [2,3,4,5]
150 if (.not.inp_i(iloc(k))) goto 911
153 if(.not. rtdb_put(rtdb,tag,mt_int,3,iloc)) goto 911
192 integer iloc(4)
201 iloc = [2,3,4,5]
224 if (.not.inp_i(iloc(k))) goto 911
/dports/science/nwchem-data/nwchem-7.0.2-release/src/mm/
H A Dmm_input.F121 integer iloc(4)
132 iloc = [2,3,4,5]
150 if (.not.inp_i(iloc(k))) goto 911
153 if(.not. rtdb_put(rtdb,tag,mt_int,3,iloc)) goto 911
192 integer iloc(4)
201 iloc = [2,3,4,5]
224 if (.not.inp_i(iloc(k))) goto 911
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/frame/methods/
H A Dtest_drop_duplicates.py77 expected = df.iloc[[0, 2]]
80 expected = df.iloc[[-2, -1]]
85 expected = df.iloc[[0, 2]]
88 expected = df.iloc[[-2, -1]]
140 expected = df.iloc[[0, 1, 2, 6]]
144 expected = df.iloc[[2, 5, 6, 7]]
148 expected = df.iloc[[2, 6]]
161 expected = df.iloc[[0, 1, 2, 6]]
307 expected = df.iloc[[5, 7]]
314 expected = df.iloc[[0, 1, 5, 6]]
[all …]
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/tsa/regime_switching/tests/
H A Dtest_markov_autoregression.py552 'smoothed0': results.iloc[3:]['switchar2_sm1'],
553 'smoothed1': results.iloc[3:]['switchar2_sm2'],
554 'predict0': results.iloc[3:]['switchar2_yhat1'],
555 'predict1': results.iloc[3:]['switchar2_yhat2'],
556 'predict_predicted': results.iloc[3:]['switchar2_pyhat'],
557 'predict_filtered': results.iloc[3:]['switchar2_fyhat'],
558 'predict_smoothed': results.iloc[3:]['switchar2_syhat'],
835 endog = cls.mar_filardo['dlip'].iloc[1:].values
837 cls.mar_filardo['dmdlleading'].iloc[:-1].values)
880 endog = cls.mar_filardo['dlip'].iloc[1:]
[all …]
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/indexing/
H A Dtest_categorical.py86 result = df.iloc[10]
94 result = df.iloc[10:20]
136 res_df = df.iloc[2:4, :]
141 res_row = df.iloc[2, :]
146 res_col = df.iloc[:, 0]
151 res_val = df.iloc[2, 0]
187 exp_fancy = df.iloc[[2]]
199 res_row = df.iloc[2]
207 res_df = df.iloc[[2, 3]]
211 res_col = df.iloc[:, 0]
[all …]

12345678910>>...56