代码搜索:Elimination
找到约 384 项符合「Elimination」的源代码
代码结果 384
www.eeworm.com/read/341137/12105250
txt elimination.txt
#include
#include
void main()
{
int m,k,t,i,j,v,u;
double a[9][9]={31,-13,0,0,0,-10,0,0,0,-13,35,-9,0,-11,0,0,0,0,0,-9,31,-10,0,0,0,0,0,0,0,-10,79,-30,0,0,0,-9,0,0,0,-30,57,-7,
www.eeworm.com/read/440621/7685058
txt iat_elimination.txt
/*
This script can fix IAT elimination at armadillo. It will create new thunks in some section that you want. You can read haw to use it in my tutorial on biw reversing. Good luck.
*/
//////////
www.eeworm.com/read/439502/7707522
m gauss_elimination.m
% Linear equations system Ax=r
% Gauss elimination with partial pivoting
% written by : Meysam Rezaei Barmi
% MSc Student of Mechanical engineering of University of Tehran
clc
clear all
%-----
www.eeworm.com/read/246573/12718855
m gaussian_elimination.m
function [L,U]=LU(A)
% Gaussian Elimination
Size=size(A);
m=Size(1,1); %计算行数
R=eye(m);%产生单位矩阵,以后用于L
n=Size(1,2);%计算列数
num=1;%设置变换的行数
Z=0;%记录行变换次数
for i=1:m
for k=i:m
if abs(A(i,i
www.eeworm.com/read/323119/13351421
result negation_elimination.result
drop table if exists t1;
create table t1 (a int, key (a));
insert into t1 values (NULL), (0), (1), (2), (3), (4), (5), (6), (7), (8), (9),
(10), (11), (12), (13), (14), (15), (16), (17), (18), (19);
e
www.eeworm.com/read/323119/13353815
test negation_elimination.test
#
# Test negation elimination
#
--disable_warnings
drop table if exists t1;
--enable_warnings
create table t1 (a int, key (a));
insert into t1 values (NULL), (0), (1), (2), (3), (4), (5), (6), (7),
www.eeworm.com/read/250959/12372735
c gaussian elimination.c
www.eeworm.com/read/490329/1201483
cpp gauss_elimination.cpp
#include
#include
#include
// add factor * line number j to line number i (j=first i=second
www.eeworm.com/read/490329/1201484
h gauss_elimination.h
#ifndef HK_GAUSS_ELEMINATION
#define HK_GAUSS_ELEMINATION
typedef float hk_gauss_real;
#define hk_GAUSS_SOLUTION_TOLERANCE (1000.0f) //factor to hk_GAUSS_ELM_EPS
class hk_Gauss_Elm_Input {
www.eeworm.com/read/436911/1841677
js no-branch-elimination.js
// Copyright 2008 the V8 project authors. All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditio