代码搜索:Matrices

找到约 3,616 项符合「Matrices」的源代码

代码结果 3,616
www.eeworm.com/read/407093/11430175

csh dtest.csh

#!/bin/csh set ofile = dtest.out # output file if ( -e $ofile ) then rm -f $ofile endif echo "Double-precision testing output" > $ofile set MATRICES = (LAPACK g10) set NVAL = (9 19
www.eeworm.com/read/402865/11526816

m renormsol.m

function [A,B,C,G]=renormsol(A,B,C,G,mode); % [A,B,C,G]=renormsol(A,B,C,G,mode); % renormalize solution: normalize core to unit sum of squares % Input: A,B,C = component matrices % G = core %
www.eeworm.com/read/401272/11559991

m simbjac.m

% function s = simbjac(a,b) % % DESCRIPTION % computes Jaccard similarity between row objects in matrices a and b % % Copyright (c) 1998-2002 by Alexander Strehl function s = simbjac(a,b) if ~exis
www.eeworm.com/read/347945/11623382

m mpt_collect_equalities.m

function Matrices = mpt_collect_equalities(Matrices,equalities) % These were just found Aeq_fixed = Matrices.G(equalities,:); Beq_fixed = -Matrices.E(equalities,:); beq_fixed = Matrices.W(equali
www.eeworm.com/read/347945/11623385

m mpt_project_on_equality.m

function [Matrices,infeasible] = mpt_project_on_equality(Matrices) % Projects the whole mp(Q)LP problem on Aeq*U + Beq*x = beq infeasible = 0; if length(Matrices.beq) > 0 [ii,jj,kk]=
www.eeworm.com/read/347945/11623392

m mpt_project_back_equality.m

function [Fi,Gi,details] = mpt_project_back_equality(Matrices,Fi,Gi,details,OriginalMatrices); if isempty(Matrices.getback) return else %Original solution given by S1*z+S2*x+S3 S1 = M
www.eeworm.com/read/347945/11623396

m mpt_solvenode.m

function model = mpt_solvenode(Matrices,lower,upper,OriginalModel,model,options) % This is the core code. Lot of pre-processing to get rid of strange stuff % arising from odd problems, big-M etc etc
www.eeworm.com/read/347945/11623402

m mpt_parbb.m

function model = mpt_parbb(Matrices,options) % For simple development, the code is currently implemented in high-level % YALMIP and MPT code. Hence, a substantial part of the computation time is
www.eeworm.com/read/347945/11624251

m getbase.m

function Q=getbase(X) %GETBASE Internal function to extract all base matrices % Author Johan L鰂berg % $Id: getbase.m,v 1.1 2006/08/10 18:00:20 joloef Exp $ Q=double(X.basis);
www.eeworm.com/read/347945/11624715

m dec2decbin.m

function s=dec2bin(d,n) %DEC2BIN Internal function generate binary matrices % Author Johan L鰂berg % $Id: dec2decbin.m,v 1.2 2004/07/02 08:17:30 johanl Exp $ [f,e]=log2(max(d)); % How many digi