Home
last modified time | relevance | path

Searched refs:normx (Results 1 – 25 of 235) sorted by relevance

12345678910

/dports/misc/vxl/vxl-3.3.2/core/vil/
H A Dvil_bicub_interp.hxx34 double normx = x-p1x; in vil_bicub_interp_unsafe() local
42 double s0 = ((2-normx)*normx-1)*normx; // -1 in vil_bicub_interp_unsafe()
43 double s1 = (3*normx-5)*normx*normx+2; // 0 in vil_bicub_interp_unsafe()
44 double s2 = ((4-3*normx)*normx+1)*normx; // +1 in vil_bicub_interp_unsafe()
45 double s3 = (normx-1)*normx*normx; // +2 in vil_bicub_interp_unsafe()
87 if (normx != 0.0) { in vil_bicub_interp_raw()
88 s0 = ((2-normx)*normx-1)*normx; // -1 in vil_bicub_interp_raw()
89 s1 = (3*normx-5)*normx*normx+2; // 0 in vil_bicub_interp_raw()
90 s2 = ((4-3*normx)*normx+1)*normx; // +1 in vil_bicub_interp_raw()
91 s3 = (normx-1)*normx*normx; // +2 in vil_bicub_interp_raw()
[all …]
H A Dvil_bilin_interp.h31 double normx = x-p1x; in vil_bilin_interp_unsafe() local
40 return i1+(i2-i1)*normx; in vil_bilin_interp_unsafe()
65 double normx = x-p1x; in vil_bilin_interp_raw() local
73 if (normx == 0 && normy == 0) return pix1[0]; in vil_bilin_interp_raw()
74 if (normx == 0) return pix1[0]+(pix1[ystep]-pix1[0])*normy; in vil_bilin_interp_raw()
75 if (normy == 0) return pix1[0]+(pix1[xstep]-pix1[0])*normx; in vil_bilin_interp_raw()
80 return i1+(i2-i1)*normx; in vil_bilin_interp_raw()
/dports/misc/vxl/vxl-3.3.2/contrib/mul/vil3d/
H A Dvil3d_tricub_interp.hxx36 double normx = x-p1x; in vil3d_tricub_interp_raw() local
48 get_tricubic_coeff( normx, s0, s1, s2, s3 ); in vil3d_tricub_interp_raw()
103 double normx = x - p1x; in vil3d_tricub_interp_safe_trilinear_extend() local
148 xi11 = vil3d_I(+0,+0,+0) + (vil3d_I(+1,+0,+0)-vil3d_I(+0,+0,+0))*normx; in vil3d_tricub_interp_safe_trilinear_extend()
149 xi21 = vil3d_I(+0,+1,+0) + (vil3d_I(+1,+1,+0)-vil3d_I(+0,+1,+0))*normx; in vil3d_tricub_interp_safe_trilinear_extend()
151 xi12 = vil3d_I(+0,+0,+1) + (vil3d_I(+1,+0,+1)-vil3d_I(+0,+0,+1))*normx; in vil3d_tricub_interp_safe_trilinear_extend()
152 xi22 = vil3d_I(+0,+1,+1) + (vil3d_I(+1,+1,+1)-vil3d_I(+0,+1,+1))*normx; in vil3d_tricub_interp_safe_trilinear_extend()
157 get_tricubic_coeff( normx, s0, s1, s2, s3 ); in vil3d_tricub_interp_safe_trilinear_extend()
198 get_tricubic_coeff( normx, s0, s1, s2, s3 ); in vil3d_tricub_interp_safe_trilinear_extend()
264 get_tricubic_coeff( normx, s0, s1, s2, s3 ); in vil3d_tricub_interp_safe_trilinear_extend()
[all …]
/dports/science/gnudatalanguage/gdl-1.0.1/src/
H A Dgdlgstream.hpp588 devx=normx*thePage.length; in NormedDeviceToDevice()
603 normx=devx/thePage.length; in DeviceToNormedDevice()
613 worldx=s1*(normx-theBox.nx1)+s2; in NormToWorld()
626 worldx=s1*(normx-theBox.ndx1)+s2; in NormedDeviceToWorld()
639 normx=s1*(worldx-theBox.wx1)+s2; in WorldToNorm()
652 normx=s1*(worldx-theBox.wx1)+s2; in WorldToNormedDevice()
663 PLFLT normx, normy; in DeviceToWorld() local
664 DeviceToNormedDevice(devx, devy, normx, normy); in DeviceToWorld()
665 NormedDeviceToWorld(normx, normy, worldx, worldy); in DeviceToWorld()
671 PLFLT normx, normy; in WorldToDevice() local
[all …]
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/extsrc/com/lightcrafts/mediax/jai/
H A DColorSpaceJAI.java421 XYZ[0] = (xBuf[xIndex] & 0xFF) * normx ; in CIEXYZToRGBByte()
488 XYZ[0] = (xBuf[xIndex] & 0xFFFF) * normx ; in CIEXYZToRGBShort()
926 double normx = 1.0, normy = normx, normz = normx ; in RGBToCIEXYZByte() local
1005 double normx = 1.0, normy = 1.0, normz = 1.0 ; in RGBToCIEXYZShort() local
1081 double normx = 1.0, normy = 1.0, normz = 1.0 ; in RGBToCIEXYZInt() local
1121 dstPixels[dIndex++] = XYZ[0] * normx; in RGBToCIEXYZInt()
1122 dstPixels[dIndex++] = XYZ[1] * normx; in RGBToCIEXYZInt()
1123 dstPixels[dIndex++] = XYZ[2] * normx; in RGBToCIEXYZInt()
1152 double normx = 1.0, normy = 1.0, normz = 1.0 ; in RGBToCIEXYZFloat() local
1191 dstPixels[dIndex++] = XYZ[0] * normx; in RGBToCIEXYZFloat()
[all …]
/dports/science/py-scipy/scipy-1.7.1/scipy/sparse/linalg/isolve/
H A Dlsmr.py287 normx = 0
302 return x, istop, itn, normr, normar, normA, condA, normx
408 normx = norm(x)
419 t1 = test1 / (1 + normA * normx / normb)
420 rtol = btol + atol * normA * normx / normb
477 print(' normx =%8.1e' % (normx))
481 return x, istop, itn, normr, normar, normA, condA, normx
/dports/science/xtb/xtb-6.4.1/src/
H A Dpbc.f9037 real(wp) :: normx(3),normy(3),normz(3) local
43 call crossproduct(lat(:,2),lat(:,3),normx)
48 normx=normx/norm2(normx)
53 cos10=sum(normx*lat(:,1))
/dports/math/libflame/libflame-5.2.0/src/lapack/util/app/qut/front/flamec/test/fla/
H A Dtime_Apply_Q.c41 normx; in time_Chol() local
46 FLA_Obj_create( FLA_FLOAT, 1, 1, 0, 0, &normx ); in time_Chol()
48 FLA_Obj_create( FLA_DOUBLE, 1, 1, 0, 0, &normx ); in time_Chol()
147 FLA_Obj_free( &normx ); in time_Chol()
/dports/math/libflame/libflame-5.2.0/src/map/lapack2flamec/f2c/c/
H A Ddla_gerfsx_extended.c425 doublereal normx, normy; in dla_gerfsx_extended_() local
544 normx = 0.; in dla_gerfsx_extended_()
572 d__1 = normx; in dla_gerfsx_extended_()
574 normx = max(d__1,d__2); in dla_gerfsx_extended_()
582 normx = normy; in dla_gerfsx_extended_()
586 if (normx != 0.) in dla_gerfsx_extended_()
588 dx_x__ = normdx / normx; in dla_gerfsx_extended_()
H A Ddla_porfsx_extended.c416 doublereal normx, normy; in dla_porfsx_extended_() local
541 normx = 0.; in dla_porfsx_extended_()
569 d__1 = normx; in dla_porfsx_extended_()
571 normx = max(d__1,d__2); in dla_porfsx_extended_()
579 normx = normy; in dla_porfsx_extended_()
583 if (normx != 0.) in dla_porfsx_extended_()
585 dx_x__ = normdx / normx; in dla_porfsx_extended_()
H A Dsla_gerfsx_extended.c420 real normx, normy; in sla_gerfsx_extended_() local
541 normx = 0.f; in sla_gerfsx_extended_()
569 r__1 = normx; in sla_gerfsx_extended_()
571 normx = max(r__1,r__2); in sla_gerfsx_extended_()
579 normx = normy; in sla_gerfsx_extended_()
583 if (normx != 0.f) in sla_gerfsx_extended_()
585 dx_x__ = normdx / normx; in sla_gerfsx_extended_()
H A Dsla_porfsx_extended.c409 real normx, normy; in sla_porfsx_extended_() local
536 normx = 0.f; in sla_porfsx_extended_()
564 r__1 = normx; in sla_porfsx_extended_()
566 normx = max(r__1,r__2); in sla_porfsx_extended_()
574 normx = normy; in sla_porfsx_extended_()
578 if (normx != 0.f) in sla_porfsx_extended_()
580 dx_x__ = normdx / normx; in sla_porfsx_extended_()
H A Ddla_gbrfsx_extended.c439 doublereal normx, normy; in dla_gbrfsx_extended_() local
559 normx = 0.; in dla_gbrfsx_extended_()
587 d__1 = normx; in dla_gbrfsx_extended_()
589 normx = max(d__1,d__2); in dla_gbrfsx_extended_()
597 normx = normy; in dla_gbrfsx_extended_()
601 if (normx != 0.) in dla_gbrfsx_extended_()
603 dx_x__ = normdx / normx; in dla_gbrfsx_extended_()
H A Dcla_porfsx_extended.c428 real normx, normy; in cla_porfsx_extended_() local
559 normx = 0.f; in cla_porfsx_extended_()
589 r__1 = normx; in cla_porfsx_extended_()
591 normx = max(r__1,r__2); in cla_porfsx_extended_()
599 normx = normy; in cla_porfsx_extended_()
603 if (normx != 0.f) in cla_porfsx_extended_()
605 dx_x__ = normdx / normx; in cla_porfsx_extended_()
H A Ddla_syrfsx_extended.c427 doublereal normx, normy; in dla_syrfsx_extended_() local
587 normx = 0.; in dla_syrfsx_extended_()
615 d__1 = normx; in dla_syrfsx_extended_()
617 normx = max(d__1,d__2); in dla_syrfsx_extended_()
625 normx = normy; in dla_syrfsx_extended_()
629 if (normx != 0.) in dla_syrfsx_extended_()
631 dx_x__ = normdx / normx; in dla_syrfsx_extended_()
H A Dzla_gerfsx_extended.c432 doublereal normx, normy; in zla_gerfsx_extended_() local
559 normx = 0.; in zla_gerfsx_extended_()
589 d__1 = normx; in zla_gerfsx_extended_()
591 normx = max(d__1,d__2); in zla_gerfsx_extended_()
599 normx = normy; in zla_gerfsx_extended_()
603 if (normx != 0.) in zla_gerfsx_extended_()
605 dx_x__ = normdx / normx; in zla_gerfsx_extended_()
H A Dzla_porfsx_extended.c426 doublereal normx, normy; in zla_porfsx_extended_() local
559 normx = 0.; in zla_porfsx_extended_()
589 d__1 = normx; in zla_porfsx_extended_()
591 normx = max(d__1,d__2); in zla_porfsx_extended_()
599 normx = normy; in zla_porfsx_extended_()
603 if (normx != 0.) in zla_porfsx_extended_()
605 dx_x__ = normdx / normx; in zla_porfsx_extended_()
H A Dsla_syrfsx_extended.c420 real normx, normy; in sla_syrfsx_extended_() local
582 normx = 0.f; in sla_syrfsx_extended_()
610 r__1 = normx; in sla_syrfsx_extended_()
612 normx = max(r__1,r__2); in sla_syrfsx_extended_()
620 normx = normy; in sla_syrfsx_extended_()
624 if (normx != 0.f) in sla_syrfsx_extended_()
626 dx_x__ = normdx / normx; in sla_syrfsx_extended_()
H A Dsla_gbrfsx_extended.c434 real normx, normy; in sla_gbrfsx_extended_() local
556 normx = 0.f; in sla_gbrfsx_extended_()
584 r__1 = normx; in sla_gbrfsx_extended_()
586 normx = max(r__1,r__2); in sla_gbrfsx_extended_()
594 normx = normy; in sla_gbrfsx_extended_()
598 if (normx != 0.f) in sla_gbrfsx_extended_()
600 dx_x__ = normdx / normx; in sla_gbrfsx_extended_()
H A Dcla_gerfsx_extended.c434 real normx, normy; in cla_gerfsx_extended_() local
559 normx = 0.f; in cla_gerfsx_extended_()
589 r__1 = normx; in cla_gerfsx_extended_()
591 normx = max(r__1,r__2); in cla_gerfsx_extended_()
599 normx = normy; in cla_gerfsx_extended_()
603 if (normx != 0.f) in cla_gerfsx_extended_()
605 dx_x__ = normdx / normx; in cla_gerfsx_extended_()
H A Dzla_herfsx_extended.c434 doublereal normx, normy; in zla_herfsx_extended_() local
602 normx = 0.; in zla_herfsx_extended_()
632 d__1 = normx; in zla_herfsx_extended_()
634 normx = max(d__1,d__2); in zla_herfsx_extended_()
642 normx = normy; in zla_herfsx_extended_()
646 if (normx != 0.) in zla_herfsx_extended_()
648 dx_x__ = normdx / normx; in zla_herfsx_extended_()
H A Dzla_gbrfsx_extended.c445 doublereal normx, normy; in zla_gbrfsx_extended_() local
573 normx = 0.; in zla_gbrfsx_extended_()
603 d__1 = normx; in zla_gbrfsx_extended_()
605 normx = max(d__1,d__2); in zla_gbrfsx_extended_()
613 normx = normy; in zla_gbrfsx_extended_()
617 if (normx != 0.) in zla_gbrfsx_extended_()
619 dx_x__ = normdx / normx; in zla_gbrfsx_extended_()
H A Dzla_syrfsx_extended.c432 doublereal normx, normy; in zla_syrfsx_extended_() local
600 normx = 0.; in zla_syrfsx_extended_()
630 d__1 = normx; in zla_syrfsx_extended_()
632 normx = max(d__1,d__2); in zla_syrfsx_extended_()
640 normx = normy; in zla_syrfsx_extended_()
644 if (normx != 0.) in zla_syrfsx_extended_()
646 dx_x__ = normdx / normx; in zla_syrfsx_extended_()
/dports/science/lammps/lammps-stable_29Sep2021/examples/PACKAGES/dielectric/
H A DREADME13 id mol type q x y z normx normy normz area_per_patch ed em epsilon curvature
19 * normx, normy and normz are the three components of the normal unit vector
22 and can be anything (e.g. 0,0,1). normx, normy, and normz can be
26 For example, if (normx,normy,normz) points from medium with epsilon_in
/dports/math/adol-c/ADOL-C-2.7.2/ADOL-C/examples/
H A Dluexam.cpp204 double *mat, *rhs, *ans, err, normx, normb; in main() local
247 normx = norm2(ans, n); in main()
249 cout << "Norm solution = " << normx <<"\n"; in main()
250 cout << "Norm of residue = " << err <<"\t relative error = " << err/normx << "\n"; in main()
273 normx = norm2(ans, n); in main()
275 cout << "Norm solution = " << normx <<"\n"; in main()
276 cout << "Norm of residue = " << err <<"\t relative error = " << err/normx <<"\n"; in main()

12345678910