Home
last modified time | relevance | path

Searched refs:Xa (Results 1 – 25 of 2094) sorted by relevance

12345678910>>...84

/dports/science/R-cran-bayesm/bayesm/R/
H A DcreateX.R2 function(p,na,nd,Xa,Xd,INT=TRUE,DIFF=FALSE,base=p) argument
40 if(!is.null(na) && !is.null(Xa))
41 {if(ncol(Xa) != p*na) pandterm(paste("bad Xa dim, dim=",dim(Xa)))}
44 if(!is.null(Xa) && !is.null(Xd))
45 {if(nrow(Xa) != nrow(Xd))
47 if(is.null(Xa)) {n=nrow(Xd)} else {n=nrow(Xa)}
54 if(!is.null(Xa))
56 {tXa=matrix(t(Xa),nrow=p)
59 Xa=matrix(as.vector(tXa),ncol=(p-1)*na,byrow=TRUE)
61 {Xext=Xa[,((i-1)*(p-1)+1):((i-1)*(p-1)+p-1)]
[all …]
/dports/science/R-cran-bayesm/bayesm/man/
H A DcreateX.Rd16 \usage{createX(p, na, nd, Xa, Xd, INT = TRUE, DIFF = FALSE, base=p)}
22 \item{Xa}{ \eqn{n x p*na} matrix of alternative-specific vars }
27 …Note: \code{na}, \code{nd}, \code{Xa}, \code{Xd} can be \code{NULL} to indicate lack of \code{Xa} …
43 Xa = matrix(vec, byrow=TRUE, ncol=3)
44 Xa = cbind(Xa,-Xa)
46 createX(p=p, na=na, nd=nd, Xa=Xa, Xd=Xd)
47 createX(p=p, na=na, nd=nd, Xa=Xa, Xd=Xd, base=1)
48 createX(p=p, na=na, nd=nd, Xa=Xa, Xd=Xd, DIFF=TRUE)
49 createX(p=p, na=na, nd=nd, Xa=Xa, Xd=Xd, DIFF=TRUE, base=2)
50 createX(p=p, na=na, nd=NULL, Xa=Xa, Xd=NULL)
[all …]
/dports/math/cppad/CppAD-20210000.8/test_more/general/
H A Dcond_exp_ad.cpp33 Xa[0] = -1.; in CondExpADOne()
34 Xa[1] = 0.; in CondExpADOne()
35 Xa[2] = 1.; in CondExpADOne()
36 Independent(Xa); in CondExpADOne()
40 Xaa[0] = Xa[0]; in CondExpADOne()
41 Xaa[1] = Xa[1]; in CondExpADOne()
42 Xaa[2] = Xa[2]; in CondExpADOne()
181 Xa[0] = -1.; in CondExpADTwo()
182 Xa[1] = 0.; in CondExpADTwo()
183 Xa[2] = 1.; in CondExpADTwo()
[all …]
/dports/graphics/gmt/gmt-6.3.0/test/project/
H A Dcartesian.sh47 gmt psbasemap -R-2/2/-2/2 -JX1.5i -B2g1 -B${Bx}${By} -O -K -Xa$xpos -Ya$ypos >> $ps
48 echo "$cx $cy 0 $az" | gmt psxy -R -J -O -K -SW0.2i -W0.25p -Xa$xpos -Ya$ypos >> $ps
49 gmt psxy -R -J -O -K -W1p,red -Xa$xpos -Ya$ypos tt.a >> $ps
50 …echo "$cx $cy $az 0.75" | gmt psxy -R -J -O -K -SV0.15i+e+a60 -W0.5p -Gred -Xa$xpos -Ya$ypos >> $ps
56 …echo "$cx $cy 0 0.75" | gmt psxy -R -J -O -K -SV0.15i+e+a60 -W0.5p -Gblack -Xa$xpos -Ya$ypos >> $ps
58 gmt pstext -R -J -O -K -F+f7p,white -Xa$xpos -Ya$ypos >> $ps <<< "1.75 0 x"
59 gmt pstext -R -J -O -K -F+f7p,white -Xa$xpos -Ya$ypos >> $ps <<< "0 1.8 y"
60 (echo "$x $y"; cut -f3,4 tt.d) | gmt psxy -R -J -O -K -W0.5p,- -Xa$xpos -Ya$ypos >> $ps
61 echo "$x $y" | gmt psxy -R -J -O -K -Xa$xpos -Ya$ypos -Sc0.075i -Gblack >> $ps
62 cut -f3,4 tt.d | gmt psxy -R -J -O -K -Xa$xpos -Ya$ypos -Sc0.075i -W0.5p,black -Gred >> $ps
[all …]
/dports/audio/afsp/AFsp-v8r2/audio/CompAudio/
H A DCAcorr.c61 CA_corr (struct Stats_T *Stats, const double Xa[], const double Xb[], int N,
70 double Xa[NBUF]; in CAcorr() local
95 AFdReadData (AFp[0], ioffs+diffA, Xa, Nv); in CAcorr()
100 CA_corr (Stats, Xa, Xb, Nv, &AWork); in CAcorr()
110 CA_corr (struct Stats_T *Stats, const double Xa[], const double Xb[], int N, in CA_corr() argument
124 if (Xa[i] != Xb[i]) { in CA_corr()
130 diff = Xa[i] - Xb[i]; in CA_corr()
137 Sx2 += SQRV (Xa[i]); in CA_corr()
139 Sxy += Xa[i] * Xb[i]; in CA_corr()
142 AWork->Ssx2 += SQRV (Xa[i]); in CA_corr()
[all …]
/dports/math/octave-forge-strings/strings-1.2.0/inst/
H A Dbase64decode.m64 Xa= X; variable
80 Va = -1*ones(size(Xa));
82 iAZ = (Xa >= 'A').*(Xa <= 'Z') > 0;
83 Va(iAZ)=Xa(iAZ)-'A';
85 iaz = (Xa >= 'a').*(Xa <= 'z') > 0;
86 Va(iaz)=Xa(iaz)-'a'+26;
88 i09 = (Xa >= '0').*(Xa <= '9') > 0;
89 Va(i09)=Xa(i09)-'0'+52;
91 is = (Xa == '/') ; Va(is) = 63;
92 ip = (Xa == '+') ; Va(ip) = 62;
[all …]
/dports/science/rdkit/rdkit-Release_2021_03_5/Code/Demos/RDKit/Basement/TemplEnum/
H A Dbox.mol22 Xa
24 Xa
26 Xa
28 Xa
/dports/graphics/glx-utils/demos-5435fc7fbd332e171da9a71e33a9b190e9462cf0/src/demos/
H A Dmorph3d.c208 …GLfloat Xf,Yf,Xa,Yb,Xf2,Yf2; …
225Xa=Xf+0.001; Yb=Yf+0.001; …
227 …Factor1=1-((sqr(Xa)+Yf2)*AmpVr2); …
230 …NeiAX=Factor1*Xa-VertX; NeiAY=Factor1*Yf-VertY; NeiAZ=Factor1*Zf-VertZ; …
237Xa=Xf+0.001; Yb=Yf+0.001; …
239 …Factor1=1-((sqr(Xa)+Yf2)*AmpVr2); …
242 …NeiAX=Factor1*Xa-VertX; NeiAY=Factor1*Yf-VertY; NeiAZ=Factor1*Zf-VertZ; …
250Xa=Xf+0.001; Yb=Yf+0.001; …
252 …Factor1=1-((sqr(Xa)+Yf2)*AmpVr2); …
329 …Factor1=1-((sqr(Xa)+Yf2)*AmpVr2); …
[all …]
/dports/graphics/mesa-demos/mesa-demos-8.4.0/src/demos/
H A Dmorph3d.c208 …GLfloat Xf,Yf,Xa,Yb,Xf2,Yf2; …
225Xa=Xf+0.001; Yb=Yf+0.001; …
227 …Factor1=1-((sqr(Xa)+Yf2)*AmpVr2); …
230 …NeiAX=Factor1*Xa-VertX; NeiAY=Factor1*Yf-VertY; NeiAZ=Factor1*Zf-VertZ; …
237Xa=Xf+0.001; Yb=Yf+0.001; …
239 …Factor1=1-((sqr(Xa)+Yf2)*AmpVr2); …
242 …NeiAX=Factor1*Xa-VertX; NeiAY=Factor1*Yf-VertY; NeiAZ=Factor1*Zf-VertZ; …
250Xa=Xf+0.001; Yb=Yf+0.001; …
252 …Factor1=1-((sqr(Xa)+Yf2)*AmpVr2); …
329 …Factor1=1-((sqr(Xa)+Yf2)*AmpVr2); …
[all …]
/dports/textproc/gsed/sed-4.8/testsuite/
H A Dmb-y-translate.sh45 echo Xa > in1 || framework_failure_
83 echo Xa > in3 || framework_failure_
88 echo Xa > in4 || framework_failure_
95 echo Xa > exp5 || framework_failure_
100 echo Xa > exp6 || framework_failure_
/dports/math/spot/spot-2.10.2/tests/core/
H A Ddca.test29 ((0 R Xa) R a) -> Fa
30 !Xa & (Gb R (Xa W 0))
38 Xa
54 !(Fa M Xa)
92 (0 R b) R (a R Xa)
113 G!Xa
138 XX(Ga <-> (Xa | !(b U Xa)))
191 (Xa W 0) M 1
198 F(!XFXb M Xa)
203 F(Fb xor !Xa)
[all …]
H A Deventuniv.test25 Xa | GFb, Xa | GFb
26 X(a | GXFb), Xa | GFb
27 Xa & GFb, Xa & GFb
28 X(a & GXFb), Xa & GFb
/dports/math/py-spot/spot-2.10.2/tests/core/
H A Ddca.test29 ((0 R Xa) R a) -> Fa
30 !Xa & (Gb R (Xa W 0))
38 Xa
54 !(Fa M Xa)
92 (0 R b) R (a R Xa)
113 G!Xa
138 XX(Ga <-> (Xa | !(b U Xa)))
191 (Xa W 0) M 1
198 F(!XFXb M Xa)
203 F(Fb xor !Xa)
[all …]
H A Deventuniv.test25 Xa | GFb, Xa | GFb
26 X(a | GXFb), Xa | GFb
27 Xa & GFb, Xa & GFb
28 X(a & GXFb), Xa & GFb
/dports/devel/ispc/ispc-1.16.1/examples/cpu/options/
H A Doptions.ispc59 bs_task(uniform float Sa[], uniform float Xa[], uniform float Ta[],
66 float S = Sa[i], X = Xa[i], T = Ta[i], r = ra[i], v = va[i];
80 launch[nTasks] bs_task(Sa, Xa, Ta, ra, va, result, count);
85 black_scholes_ispc(uniform float Sa[], uniform float Xa[], uniform float Ta[],
89 float S = Sa[i], X = Xa[i], T = Ta[i], r = ra[i], v = va[i];
122 binomial_put_ispc(uniform float Sa[], uniform float Xa[], uniform float Ta[],
126 float S = Sa[i], X = Xa[i], T = Ta[i], r = ra[i], v = va[i];
133 binomial_task(uniform float Sa[], uniform float Xa[],
141 float S = Sa[i], X = Xa[i], T = Ta[i], r = ra[i], v = va[i];
148 binomial_put_ispc_tasks(uniform float Sa[], uniform float Xa[],
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/gnat.dg/
H A Ddefault_pkg_actual.adb16 with package Xa is new As; formal
18 package Xb is new Bs(T => Integer, A0 => Xa);
27 package X is new Xs(Xa => A);
/dports/lang/gcc8/gcc-8.5.0/gcc/testsuite/gnat.dg/
H A Ddefault_pkg_actual.adb16 with package Xa is new As; formal
18 package Xb is new Bs(T => Integer, A0 => Xa);
27 package X is new Xs(Xa => A);
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/gnat.dg/
H A Ddefault_pkg_actual.adb16 with package Xa is new As; formal
18 package Xb is new Bs(T => Integer, A0 => Xa);
27 package X is new Xs(Xa => A);
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gnat.dg/
H A Ddefault_pkg_actual.adb16 with package Xa is new As; formal
18 package Xb is new Bs(T => Integer, A0 => Xa);
27 package X is new Xs(Xa => A);
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/gnat.dg/
H A Ddefault_pkg_actual.adb16 with package Xa is new As; formal
18 package Xb is new Bs(T => Integer, A0 => Xa);
27 package X is new Xs(Xa => A);
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/testsuite/gnat.dg/
H A Ddefault_pkg_actual.adb16 with package Xa is new As; formal
18 package Xb is new Bs(T => Integer, A0 => Xa);
27 package X is new Xs(Xa => A);
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/testsuite/gnat.dg/
H A Ddefault_pkg_actual.adb16 with package Xa is new As; formal
18 package Xb is new Bs(T => Integer, A0 => Xa);
27 package X is new Xs(Xa => A);
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/testsuite/gnat.dg/
H A Ddefault_pkg_actual.adb16 with package Xa is new As; formal
18 package Xb is new Bs(T => Integer, A0 => Xa);
27 package X is new Xs(Xa => A);
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gnat.dg/
H A Ddefault_pkg_actual.adb16 with package Xa is new As; formal
18 package Xb is new Bs(T => Integer, A0 => Xa);
27 package X is new Xs(Xa => A);
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/gnat.dg/
H A Ddefault_pkg_actual.adb16 with package Xa is new As; formal
18 package Xb is new Bs(T => Integer, A0 => Xa);
27 package X is new Xs(Xa => A);

12345678910>>...84