代码搜索:LU
找到约 4,060 项符合「LU」的源代码
代码结果 4,060
www.eeworm.com/read/166323/10024068
cpp lu.cpp
#include "iostream.h"
#include "math.h"
void main()
{
//program d1r2
//driver program for routine lubksb,ludcmp
int i,j,l,p=0;
int n = 3;
double a[4][4], b[4], a1[10], x[4];
www.eeworm.com/read/164574/10102991
gif lu.gif
www.eeworm.com/read/163510/10156277
c lu.c
/*
C-file generated by 礐/GUI-BitmapConvert V2.30c, compiled Jul 23 2002, 12:06:33
(c) 2002 Micrium, Inc.
www.micrium.com
(c) 1998-2002 Segger
Microcontroller Systeme GmbH
www.s
www.eeworm.com/read/355893/10241934
doc lu.doc
www.eeworm.com/read/355870/10242702
gif lu.gif
www.eeworm.com/read/424281/10473434
c lu.c
/* linalg/lu.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of
www.eeworm.com/read/278414/10536802
m lu.m
clc
A=[1 1 3 1;-2 3 5 1;3 0 4 -2;5 -4 2 6];
b=[3 0 -5 4]';
%LU分解法(先进行LU分解)
[l,u]=lu(A);
x0=u\(l\b)
%LU分解法
x1=A\b
n=length(A);
U(1,:)=A(1,:);% 第1行
L(:,1)=A(:,1)/U(1,1);% 第1列
for i=1:n
www.eeworm.com/read/159822/10614227
gif lu.gif
www.eeworm.com/read/272513/10955159
h lu.h
// -*- c++ -*-
//
// Copyright 1997, 1998, 1999 University of Notre Dame.
// Authors: Andrew Lumsdaine, Jeremy G. Siek, Lie-Quan Lee
//
// This file is part of the Matrix Template Library
//
// You sh
www.eeworm.com/read/468725/6986997
cpp lu.cpp
#include
#include
#define N 10 //矩阵大小范围
void main()
{
float l[N][N]={0}; //定义L矩阵
float u[N][N]={0}; //定义U矩阵
float y[N]={0}; //定义数组Y
float x[N]={0}; //定义数组X
float