代码搜索:solves
找到约 1,488 项符合「solves」的源代码
代码结果 1,488
www.eeworm.com/read/347943/11626191
c fwblkslv.c
/*
y = fwblkslv(L,b, [y])
Given block sparse Cholesky structure L, as generated by
SPARCHOL, this solves the equation "L.L * y = b(L.perm,:)",
i.e. y = L.L\b(L.perm,:). The diagonal
www.eeworm.com/read/257008/11961357
m uopf.m
function [best_bus, best_gen, best_branch, best_f, best_success, et] = ...
uopf(baseMVA, bus, gen, gencost, branch, Ybus, Yf, Yt, mpopt)
%UOPF Solves combined unit commitment / optimal power flow
www.eeworm.com/read/253870/12179479
m dde45.m
function [tout, xout]=dde45(xpfun,t0,tf,x0,initfun,tol)
%DDE45 Solves functional differential equations (systems with delays).
% DDE45 integrates a system of functional-differential equations using
www.eeworm.com/read/336459/12442571
m bvp.m
function [x,uh]=bvp(a,b,N,delta,gamma,fun,ua,ub)
%BVP Solve two-point boundary value problem
% [X,UH]=BVP(A,B,N,DELTA,GAMMA,FUN,UA,UB) solves with the
% centered finite difference method the bound
www.eeworm.com/read/231030/14260180
m forcedosc.m
% This program solves the equation for a forced oscilator
% X_tt + X = f(t), X(0)=X0, X_t(0)=Y0
% through a predictor-corrector methodology. First, the
% equation is rewritten as a first order syst
www.eeworm.com/read/457216/1599718
m qcqp.m
% Section 5.2.4: Solves a simple QCQP
% Boyd & Vandenberghe, "Convex Optimization"
% Jo雔le Skaf - 08/23/05
%
% Solved a QCQP with 3 inequalities:
% minimize 1/2 x'*P0*x + q0'*r + r0
%
www.eeworm.com/read/457216/1599768
c mexfwblkslv.c
/*
y = fwblkslv(L,b, [y])
Given block sparse Cholesky structure L, as generated by
SPARCHOL, this solves the equation "L.L * y = b(L.perm,:)",
i.e. y = L.L\b(L.perm,:). The diagonal of
www.eeworm.com/read/453176/1642066
m denoi_bls_gsm_band.m
function x_hat = denoi_BLS_GSM_band(y,block,noise,prnt,covariance,optim,sig);
% It solves for the BLS global optimum solution, using a flat (pseudo)prior for log(z)
% x_hat = denoi_BLS_GSM_ban
www.eeworm.com/read/349580/3142657
cpp main.cpp
// Copyright (C) 2006-2007 Anders Logg.
// Licensed under the GNU LGPL Version 2.1.
//
// First added: 2006-02-09
// Last changed: 2007-07-11
//
// This demo solves the time-dependent convection-diff
www.eeworm.com/read/407519/2261964
py demo.py
"""This demo program solves Poisson's equation
- div grad u(x, y) = f(x, y)
on the unit square with source f given by
f(x, y) = 500*exp(-((x-0.5)^2 + (y-0.5)^2)/0.02)
and boundary conditio