Home
last modified time | relevance | path

Searched refs:svd (Results 151 – 175 of 3103) sorted by relevance

12345678910>>...125

/dports/math/scilab/scilab-6.1.1/scilab/modules/m2sci/tests/nonreg_tests/
H A Dbug_924.tst36 "[c,d]=svd(1);";
37 "[c,d]=svd(1),";
38 "[c,d]=svd(1)";
58 "[c,d] = svd(1);";
59 "[c,d] = svd(1)";
60 "[c,d] = svd(1)";
/dports/math/scilab/scilab-6.1.1/scilab/modules/core/tests/unit_tests/
H A DQR.tst136 [u,s,v]=svd(a);u*s*v'-a;
137 assert_checktrue(abs(svd(a)-diag(s))< 10*%eps);
138 [u,s,v]=svd(ac);u*s*v'-ac;
139 assert_checktrue(abs(svd(ac)-diag(s))< 10*%eps);
141 [u,s,v]=svd(a,0);u*s*v'-a;
143 [u,s,v]=svd(ac,0);u*s*v'-ac;
147 [u,s,v]=svd(a);u*s*v'-a;
148 assert_checktrue(abs(svd(a)-diag(s))< 10*%eps);
149 [u,s,v]=svd(ac);u*s*v'-ac;
152 [u,s,v]=svd(a,0);u*s*v'-a;
[all …]
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/src/
H A DMixedVarConstraints.hpp43 MixedVarConstraints(const SharedVariablesData& svd);
46 const SharedVariablesData& svd);
71 inline MixedVarConstraints::MixedVarConstraints(const SharedVariablesData& svd): in MixedVarConstraints() argument
72 Constraints(BaseConstructor(), svd) in MixedVarConstraints()
H A DRelaxedVarConstraints.hpp44 RelaxedVarConstraints(const SharedVariablesData& svd);
47 const SharedVariablesData& svd);
73 RelaxedVarConstraints(const SharedVariablesData& svd): in RelaxedVarConstraints() argument
74 Constraints(BaseConstructor(), svd) in RelaxedVarConstraints()
H A DNonDSampling.cpp388 const SharedVariablesData& svd = vars.shared_data(); in sample_to_variables() local
603 const SharedVariablesData& svd = vars.shared_data(); in variables_to_sample() local
608 sample_vars[svd.acv_index_to_all_index(i)] in variables_to_sample()
613 sample_vars[svd.adiv_index_to_all_index(i)] in variables_to_sample()
631 sample_vars[svd.adrv_index_to_all_index(i)] in variables_to_sample()
651 const SharedVariablesData& svd = vars.shared_data(); in mode_counts() local
671 svd.design_counts(cv_start, dummy, dummy, dummy); in mode_counts()
686 svd.design_counts(cv_start, dummy, dummy, dummy); in mode_counts()
700 svd.design_counts(cv_start, dummy, dummy, dummy); in mode_counts()
702 svd.uncertain_counts(num_cv, dummy, dummy, dummy); in mode_counts()
[all …]
H A DDakotaVariables.cpp59 sharedVarsData(svd) in Variables()
117 variablesRep(get_variables(svd)) in Variables()
129 short active_view = svd.view().first; in get_variables()
447 SharedVariablesData svd; in load() local
448 ar & svd; in load() local
455 variablesRep = get_variables(svd); in load()
459 variablesRep = get_variables(svd); in load()
581 variablesRep = get_variables(svd); in read_annotated()
585 variablesRep = get_variables(svd); in read_annotated()
696 variablesRep = get_variables(svd); in read()
[all …]
/dports/math/R-cran-robustbase/robustbase/R/
H A Ddetmcd.R119 score <- (z - rep(svd$center, each=n)) %*% svd$loadings
124 svd <- classPC(z[obs_in_set, ,drop=FALSE], signflip=FALSE) functionVar
125 obj <- sum(log(svd$eigenvalues))
127 if(svd$rank < p) { ## FIXME --> return exact fit property rather than stop() ??
156 initmean <- svd$center
157 L <- svd$loadings
159 initcov <- tcrossprod(L * rep(svd$eigenvalues, each=nrow(L)), L)
415 svd <- classPC(xk, signflip=FALSE) # [P,T,L,r,centerX,meanvct] = classSVD(xk)
416 if(svd$rank < p) ## FIXME: " return("exactfit") "
418 score <- (x - rep(svd$center, each=n)) %*% svd$loadings
[all …]
/dports/devel/R-cran-broom/broom/man/
H A Dtidy_svd.Rd2 % Please edit documentation in R/list-svd-tidiers.R
6 \title{Tidy a(n) svd object masquerading as list}
11 …list with components \code{u}, \code{d}, \code{v} returned by \code{\link[base:svd]{base::svd()}}.}
72 \link[base:svd]{svd()} and \code{\link[akima:interp]{akima::interp()}} produce consistent output, b…
84 …/stats.stackexchange.com/questions/134282/relationship-between-svd-and-pca-how-to-use-svd-to-perfo…
96 s <- svd(mat)
124 \code{\link[base:svd]{base::svd()}}
126 Other svd tidiers:
139 \concept{svd tidiers}
/dports/misc/vxl/vxl-3.3.2/contrib/oxl/mvl/
H A DPMatrix.cxx172 return svd()->solve(x.get_vector().as_ref()); in backproject_pseudoinverse()
278 vnl_svd<double>* PMatrix::svd() const in svd() function in PMatrix
299 if (svd()->singularities() > 1) { in get_focal()
301 << " Nullspace dimension is " << svd()->singularities() in get_focal()
306 vnl_matrix<double> ns = svd()->nullspace(); in get_focal()
314 if (svd()->singularities() > 1) { in get_focal_point()
316 << " Nullspace dimension is " << svd()->singularities() in get_focal_point()
321 vnl_matrix<double> nullspace = svd()->nullspace(); in get_focal_point()
342 vnl_svd<double> svd(p.A.as_ref()); in get_canonical_H() local
343 return HMatrix3D(svd.inverse(), -svd.solve(p.a.as_ref())); in get_canonical_H()
[all …]
/dports/math/suitesparse-ldl/SuiteSparse-5.10.1/MATLAB_Tools/Factorize/Test/
H A Dtest_svd.m24 F = factorize (A, 'svd') ;
102 s1 = svd (A) ;
130 [U1, S1, V1] = svd (F) ;
131 [U2, S2, V2] = svd (full (A)) ;
137 [U1, S1, V1] = svd (inverse (F)) ;
138 [U2, S2, V2] = svd (pinv (full (A))) ;
142 [U1, S1, V1] = svd (F, 0) ;
143 [U2, S2, V2] = svd (full (A), 0) ;
149 [U1, S1, V1] = svd (F, 'econ') ;
150 [U2, S2, V2] = svd (full (A), 'econ') ;
[all …]
/dports/math/suitesparse-config/SuiteSparse-5.10.1/MATLAB_Tools/Factorize/Test/
H A Dtest_svd.m24 F = factorize (A, 'svd') ;
102 s1 = svd (A) ;
130 [U1, S1, V1] = svd (F) ;
131 [U2, S2, V2] = svd (full (A)) ;
137 [U1, S1, V1] = svd (inverse (F)) ;
138 [U2, S2, V2] = svd (pinv (full (A))) ;
142 [U1, S1, V1] = svd (F, 0) ;
143 [U2, S2, V2] = svd (full (A), 0) ;
149 [U1, S1, V1] = svd (F, 'econ') ;
150 [U2, S2, V2] = svd (full (A), 'econ') ;
[all …]
/dports/math/suitesparse-graphblas/SuiteSparse-5.10.1/MATLAB_Tools/Factorize/Test/
H A Dtest_svd.m24 F = factorize (A, 'svd') ;
102 s1 = svd (A) ;
130 [U1, S1, V1] = svd (F) ;
131 [U2, S2, V2] = svd (full (A)) ;
137 [U1, S1, V1] = svd (inverse (F)) ;
138 [U2, S2, V2] = svd (pinv (full (A))) ;
142 [U1, S1, V1] = svd (F, 0) ;
143 [U2, S2, V2] = svd (full (A), 0) ;
149 [U1, S1, V1] = svd (F, 'econ') ;
150 [U2, S2, V2] = svd (full (A), 'econ') ;
[all …]
/dports/math/suitesparse-mongoose/SuiteSparse-5.10.1/MATLAB_Tools/Factorize/Test/
H A Dtest_svd.m24 F = factorize (A, 'svd') ;
102 s1 = svd (A) ;
130 [U1, S1, V1] = svd (F) ;
131 [U2, S2, V2] = svd (full (A)) ;
137 [U1, S1, V1] = svd (inverse (F)) ;
138 [U2, S2, V2] = svd (pinv (full (A))) ;
142 [U1, S1, V1] = svd (F, 0) ;
143 [U2, S2, V2] = svd (full (A), 0) ;
149 [U1, S1, V1] = svd (F, 'econ') ;
150 [U2, S2, V2] = svd (full (A), 'econ') ;
[all …]
/dports/math/suitesparse-klu/SuiteSparse-5.10.1/MATLAB_Tools/Factorize/Test/
H A Dtest_svd.m24 F = factorize (A, 'svd') ;
102 s1 = svd (A) ;
130 [U1, S1, V1] = svd (F) ;
131 [U2, S2, V2] = svd (full (A)) ;
137 [U1, S1, V1] = svd (inverse (F)) ;
138 [U2, S2, V2] = svd (pinv (full (A))) ;
142 [U1, S1, V1] = svd (F, 0) ;
143 [U2, S2, V2] = svd (full (A), 0) ;
149 [U1, S1, V1] = svd (F, 'econ') ;
150 [U2, S2, V2] = svd (full (A), 'econ') ;
[all …]
/dports/math/suitesparse-rbio/SuiteSparse-5.10.1/MATLAB_Tools/Factorize/Test/
H A Dtest_svd.m24 F = factorize (A, 'svd') ;
102 s1 = svd (A) ;
130 [U1, S1, V1] = svd (F) ;
131 [U2, S2, V2] = svd (full (A)) ;
137 [U1, S1, V1] = svd (inverse (F)) ;
138 [U2, S2, V2] = svd (pinv (full (A))) ;
142 [U1, S1, V1] = svd (F, 0) ;
143 [U2, S2, V2] = svd (full (A), 0) ;
149 [U1, S1, V1] = svd (F, 'econ') ;
150 [U2, S2, V2] = svd (full (A), 'econ') ;
[all …]
/dports/math/suitesparse-cholmod/SuiteSparse-5.10.1/MATLAB_Tools/Factorize/Test/
H A Dtest_svd.m24 F = factorize (A, 'svd') ;
102 s1 = svd (A) ;
130 [U1, S1, V1] = svd (F) ;
131 [U2, S2, V2] = svd (full (A)) ;
137 [U1, S1, V1] = svd (inverse (F)) ;
138 [U2, S2, V2] = svd (pinv (full (A))) ;
142 [U1, S1, V1] = svd (F, 0) ;
143 [U2, S2, V2] = svd (full (A), 0) ;
149 [U1, S1, V1] = svd (F, 'econ') ;
150 [U2, S2, V2] = svd (full (A), 'econ') ;
[all …]
/dports/math/suitesparse-colamd/SuiteSparse-5.10.1/MATLAB_Tools/Factorize/Test/
H A Dtest_svd.m24 F = factorize (A, 'svd') ;
102 s1 = svd (A) ;
130 [U1, S1, V1] = svd (F) ;
131 [U2, S2, V2] = svd (full (A)) ;
137 [U1, S1, V1] = svd (inverse (F)) ;
138 [U2, S2, V2] = svd (pinv (full (A))) ;
142 [U1, S1, V1] = svd (F, 0) ;
143 [U2, S2, V2] = svd (full (A), 0) ;
149 [U1, S1, V1] = svd (F, 'econ') ;
150 [U2, S2, V2] = svd (full (A), 'econ') ;
[all …]
/dports/math/suitesparse-ccolamd/SuiteSparse-5.10.1/MATLAB_Tools/Factorize/Test/
H A Dtest_svd.m24 F = factorize (A, 'svd') ;
102 s1 = svd (A) ;
130 [U1, S1, V1] = svd (F) ;
131 [U2, S2, V2] = svd (full (A)) ;
137 [U1, S1, V1] = svd (inverse (F)) ;
138 [U2, S2, V2] = svd (pinv (full (A))) ;
142 [U1, S1, V1] = svd (F, 0) ;
143 [U2, S2, V2] = svd (full (A), 0) ;
149 [U1, S1, V1] = svd (F, 'econ') ;
150 [U2, S2, V2] = svd (full (A), 'econ') ;
[all …]
/dports/math/suitesparse-slip_lu/SuiteSparse-5.10.1/MATLAB_Tools/Factorize/Test/
H A Dtest_svd.m24 F = factorize (A, 'svd') ;
102 s1 = svd (A) ;
130 [U1, S1, V1] = svd (F) ;
131 [U2, S2, V2] = svd (full (A)) ;
137 [U1, S1, V1] = svd (inverse (F)) ;
138 [U2, S2, V2] = svd (pinv (full (A))) ;
142 [U1, S1, V1] = svd (F, 0) ;
143 [U2, S2, V2] = svd (full (A), 0) ;
149 [U1, S1, V1] = svd (F, 'econ') ;
150 [U2, S2, V2] = svd (full (A), 'econ') ;
[all …]
/dports/math/suitesparse-spqr/SuiteSparse-5.10.1/MATLAB_Tools/Factorize/Test/
H A Dtest_svd.m24 F = factorize (A, 'svd') ;
102 s1 = svd (A) ;
130 [U1, S1, V1] = svd (F) ;
131 [U2, S2, V2] = svd (full (A)) ;
137 [U1, S1, V1] = svd (inverse (F)) ;
138 [U2, S2, V2] = svd (pinv (full (A))) ;
142 [U1, S1, V1] = svd (F, 0) ;
143 [U2, S2, V2] = svd (full (A), 0) ;
149 [U1, S1, V1] = svd (F, 'econ') ;
150 [U2, S2, V2] = svd (full (A), 'econ') ;
[all …]
/dports/math/suitesparse-umfpack/SuiteSparse-5.10.1/MATLAB_Tools/Factorize/Test/
H A Dtest_svd.m24 F = factorize (A, 'svd') ;
102 s1 = svd (A) ;
130 [U1, S1, V1] = svd (F) ;
131 [U2, S2, V2] = svd (full (A)) ;
137 [U1, S1, V1] = svd (inverse (F)) ;
138 [U2, S2, V2] = svd (pinv (full (A))) ;
142 [U1, S1, V1] = svd (F, 0) ;
143 [U2, S2, V2] = svd (full (A), 0) ;
149 [U1, S1, V1] = svd (F, 'econ') ;
150 [U2, S2, V2] = svd (full (A), 'econ') ;
[all …]
/dports/math/suitesparse-btf/SuiteSparse-5.10.1/MATLAB_Tools/Factorize/Test/
H A Dtest_svd.m24 F = factorize (A, 'svd') ;
102 s1 = svd (A) ;
130 [U1, S1, V1] = svd (F) ;
131 [U2, S2, V2] = svd (full (A)) ;
137 [U1, S1, V1] = svd (inverse (F)) ;
138 [U2, S2, V2] = svd (pinv (full (A))) ;
142 [U1, S1, V1] = svd (F, 0) ;
143 [U2, S2, V2] = svd (full (A), 0) ;
149 [U1, S1, V1] = svd (F, 'econ') ;
150 [U2, S2, V2] = svd (full (A), 'econ') ;
[all …]
/dports/math/suitesparse-amd/SuiteSparse-5.10.1/MATLAB_Tools/Factorize/Test/
H A Dtest_svd.m24 F = factorize (A, 'svd') ;
102 s1 = svd (A) ;
130 [U1, S1, V1] = svd (F) ;
131 [U2, S2, V2] = svd (full (A)) ;
137 [U1, S1, V1] = svd (inverse (F)) ;
138 [U2, S2, V2] = svd (pinv (full (A))) ;
142 [U1, S1, V1] = svd (F, 0) ;
143 [U2, S2, V2] = svd (full (A), 0) ;
149 [U1, S1, V1] = svd (F, 'econ') ;
150 [U2, S2, V2] = svd (full (A), 'econ') ;
[all …]
/dports/math/suitesparse-camd/SuiteSparse-5.10.1/MATLAB_Tools/Factorize/Test/
H A Dtest_svd.m24 F = factorize (A, 'svd') ;
102 s1 = svd (A) ;
130 [U1, S1, V1] = svd (F) ;
131 [U2, S2, V2] = svd (full (A)) ;
137 [U1, S1, V1] = svd (inverse (F)) ;
138 [U2, S2, V2] = svd (pinv (full (A))) ;
142 [U1, S1, V1] = svd (F, 0) ;
143 [U2, S2, V2] = svd (full (A), 0) ;
149 [U1, S1, V1] = svd (F, 'econ') ;
150 [U2, S2, V2] = svd (full (A), 'econ') ;
[all …]
/dports/math/suitesparse-csparse/SuiteSparse-5.10.1/MATLAB_Tools/Factorize/Test/
H A Dtest_svd.m24 F = factorize (A, 'svd') ;
102 s1 = svd (A) ;
130 [U1, S1, V1] = svd (F) ;
131 [U2, S2, V2] = svd (full (A)) ;
137 [U1, S1, V1] = svd (inverse (F)) ;
138 [U2, S2, V2] = svd (pinv (full (A))) ;
142 [U1, S1, V1] = svd (F, 0) ;
143 [U2, S2, V2] = svd (full (A), 0) ;
149 [U1, S1, V1] = svd (F, 'econ') ;
150 [U2, S2, V2] = svd (full (A), 'econ') ;
[all …]

12345678910>>...125