代码搜索:solves
找到约 1,488 项符合「solves」的源代码
代码结果 1,488
www.eeworm.com/read/420351/10800760
m lse.m
function x = lse(A,b,C,d,solverflag,weights)
% solves A*x = b for X in a least squares sense, given C*x = d
% usage: x = lse(A,b,C,d)
% usage: x = lse(A,b,C,d,solverflag)
% usage: x = lse(A,b,C,d,solv
www.eeworm.com/read/296909/8072735
m gpposy.m
function [x,status,lambda,nu] = gpposy(A,b,szs,varargin)
% [x,status,lambda,nu] = gpposy(A,b,szs,G,h,l,u,quiet)
%
% solves the geometric program in posynomial form
%
% minimize sum_k b0_k*x1^A0_{
www.eeworm.com/read/309240/13678052
m projfunc.m
function [v,usediters] = projfunc( s, k1, k2, nn )
% Solves the following problem:
% Given a vector s, find the vector v having sum(abs(v))=k1
% and sum(v.^2)=k2 which is closest to s in the euclidi
www.eeworm.com/read/336459/12442565
m poissonfd.m
function [u,x,y,error]=poissonfd(a,c,b,d,nx,ny,f,g,uex)
%POISSONFD two-dimensional Poisson solver
% [U,X,Y]=POISSONFD(A,C,B,D,NX,NY,FUN,BOUND) solves with
% the 5-points finite difference scheme t
www.eeworm.com/read/159608/5582324
m pr_loqo2.m
function [x,y] = pr_loqo2(c, H, A, b, l, u)
%[X,Y] = PR_LOQO2(c, H, A, b, l, u)
%
%loqo solves the quadratic programming problem
%
%minimize c' * x + 1/2 x' * H * x
%subject to A*x = b
%
www.eeworm.com/read/159608/5582331
m pr_loqo2.m
function [x,y] = pr_loqo2(c, H, A, b, l, u)
%[X,Y] = PR_LOQO2(c, H, A, b, l, u)
%
%loqo solves the quadratic programming problem
%
%minimize c' * x + 1/2 x' * H * x
%subject to A*x = b
%
www.eeworm.com/read/427475/8942002
m durbin_method.m
%Function that solves Ra=r using durbin recursion if R is toeplitz
function [alpha,G]=durbin_method(Rn,p)
E(1)=Rn(1); %E(0)=R(0)
for i=1:1:p
if i==1;
k(i)=Rn(i+1)/E(i);
a(i,i
www.eeworm.com/read/183949/9129497
m pr_loqo2.m
function [x,y] = pr_loqo2(c, H, A, b, l, u)
%[X,Y] = PR_LOQO2(c, H, A, b, l, u)
%
%loqo solves the quadratic programming problem
%
%minimize c' * x + 1/2 x' * H * x
%subject to A*x = b
% l
www.eeworm.com/read/379658/9190585
m sspropv.m
function [u1x,u1y] = sspropv(u0x,u0y,dt,dz,nz,alphaa,alphab,betapa,betapb,gamma,psp,method,maxiter,tol);
% This function solves the coupled-mode nonlinear Schrodinger equations for
% pulse propagatio
www.eeworm.com/read/279380/10442762
m bicgstb.m
function [x, err,iter] = bicgstb(A, b, M1, M2, max_it, tol)
% [x, err] = bicgstb(A, b, M1, M2, max_it, tol)
%
% bicgstab.m solves the linear system Ax=b using the
% BiConjugate Gradient Stabiliz