代码搜索:solves

找到约 1,488 项符合「solves」的源代码

代码结果 1,488
www.eeworm.com/read/427201/8966554

m rwg3.m

%RWG3-FREQUENCY LOOP % Calculates the impedance matrix using function IMPMET % and solves MoM equations % Uses the mesh file from RWG2, mesh2.mat, as an input. % % The following paramet
www.eeworm.com/read/381244/9100678

m rwg3.m

%RWG3-FREQUENCY LOOP % Calculates the impedance matrix using function IMPMET % and solves MoM equations % Uses the mesh file from RWG2, mesh2.mat, as an input. % % The following paramet
www.eeworm.com/read/281807/9132926

m rwg31.m

%RWG31 FREQUENCY LOOP % Calculates the impedance matrix using function IMPMET % and solves MoM equations % Uses the mesh file from RWG2, mesh2.mat, as an input. % % The following parame
www.eeworm.com/read/281807/9133431

m rwg3.m

%RWG3-FREQUENCY LOOP % Calculates the impedance matrix using function IMPMET % and solves MoM equations % Uses the mesh file from RWG2, mesh2.mat, as an input. % % The following paramet
www.eeworm.com/read/279380/10442830

m qu.m

function[v] = Qu(Q,u,srcnum) % [v] = Qu(Q,u) %projects the data onto the Q grid %solves the linear system v = Q*u % Copyright (c) 2007 by the Society of Exploration Geophysicists. % For more in
www.eeworm.com/read/349903/10785488

cpp hilbert.cpp

/* * Solve set of linear equations involving * a Hilbert matrix * i.e. solves Hx=b, where b is the vector [1,1,1....1] * * Requires: flash.cpp * * Copyright (c) Shamus Software 19
www.eeworm.com/read/139007/13195406

m gj.m

function x = gj(A, b, piv) %GJ Gauss-Jordan elimination to solve Ax = b. % x = GJ(A, b, PIV) solves Ax = b by Gauss-Jordan elimination, % where A is a square, nonsingular m
www.eeworm.com/read/138987/13197200

m opf.m

function [buso, gen, branch, f, success, info, et, g, jac] = opf(baseMVA, bus,... gen, branch, areas, gencost, Au, lu, ubu, mpopt) %OPF Solves an optimal power flow. % %If the OPF algorithm
www.eeworm.com/read/318176/13484092

cpp hilbert.cpp

/* * Solve set of linear equations involving * a Hilbert matrix * i.e. solves Hx=b, where b is the vector [1,1,1....1] * * Requires: flash.cpp * * Copyright (c) Shamus Software 19
www.eeworm.com/read/310212/13654848

c tridisolve.c

/* * function y = tridisolve(e,d,b,n); * TRIDISOLVE * Solves a symmetric, tridiagonal system * A = diag(E,-1) + diag(D,0) + diag(E,1) * TRIDISOLVE(E,D,B,N) * Algorithm from Go