代码搜索:triangular
找到约 1,594 项符合「triangular」的源代码
代码结果 1,594
www.eeworm.com/read/480920/6653731
cpp triangulacion_con_pivoteo.cpp
//Triangulacion con pivoteo
#include
#include
#include
#define COLS 100
void triangular(float A[][COLS],int n,float E)
{ float m,aux; int i,j,k,t;
for (j=0; j
www.eeworm.com/read/407093/11429513
m try4.m
function info = try4(A,pin);
% TRY4 : test SUPERLU with 4 outputs
%
% info = try4(A,pin);
% normally info is the residual norm;
% but info is at least 10^6 if the factors are not triangular,
% or the
www.eeworm.com/read/407093/11429524
m trytime.m
function info = trytime(A);
% TRYTIME : time SUPERLU with 3 outputs against Matlab's LU
%
% info = trytime(A);
% normally info is ||P*A*x-L*U*x|| / ||A|| (for a random x);
% but info is at least 10^6
www.eeworm.com/read/407093/11430002
c zhemv.c
/* -- translated by f2c (version 19940927).
You must link the resulting object file with the libraries:
-lf2c -lm (in that order)
*/
#include "f2c.h"
/* Subroutine */ int zhemv_(char *uplo,
www.eeworm.com/read/407093/11430025
c chemv.c
/* -- translated by f2c (version 19940927).
You must link the resulting object file with the libraries:
-lf2c -lm (in that order)
*/
#include "f2c.h"
/* Subroutine */ int chemv_(char *uplo,
www.eeworm.com/read/156519/11795500
java lotteryarray.java
/**
@version 1.20 2004-02-10
@author Cay Horstmann
*/
public class LotteryArray
{
public static void main(String[] args)
{
final int NMAX = 10;
// allocate triangu
www.eeworm.com/read/342747/12003931
m gradecalc.m
function [grade] = GradeCalc(x, b1, b2, c)
% function [grade] = GradeCalc(x, b1, b2, c)
% Compute the membership grade of a number in a triangular fuzzy set.
% INPUTS
% x = input value.
%
www.eeworm.com/read/153823/12004331
m dijk.m
function [D,P] = dijk(A,s,t)
%DIJK Shortest paths from nodes 's' to nodes 't' using Dijkstra algorithm.
% [D,P] = dijk(A,s,t)
% A = n x n node-node weighted adjacency matrix of arc lengths
%
www.eeworm.com/read/254526/12132615
m bslashtx.m
function x = bslashtx(A,b)
% 被交互实验trylu调用
% BSLASHTX Solve linear system (backslash)
% x = bslashtx(A,b) solves A*x = b
[n,n] = size(A);
% Triangular factorization
[L,U,p] = lutx(A);
www.eeworm.com/read/254523/12132673
m bslashtx.m
function x = bslashtx(A,b)
% 被交互实验trylu调用
% BSLASHTX Solve linear system (backslash)
% x = bslashtx(A,b) solves A*x = b
[n,n] = size(A);
% Triangular factorization
[L,U,p] = lutx(A);