代码搜索:factor

找到约 6,651 项符合「factor」的源代码

代码结果 6,651
www.eeworm.com/read/401480/11557292

m factor.m

function [val] = factor(n) % Compute the factorial of n using logarithms to avoid overflow. format long n = n + 9.0; n2 = n * n; temp = (n-1) * log(n) - n + log(sqrt(2.0 * pi * n)) ... + ((1.
www.eeworm.com/read/348549/11589285

exe factor.exe

www.eeworm.com/read/158240/11631178

m factor.m

function f=factor(n) if n
www.eeworm.com/read/346860/11718162

m factor.m

function f=factor(n) if n
www.eeworm.com/read/156908/11752845

exe factor.exe

www.eeworm.com/read/156908/11753135

c factor.c

/* * Program to factor Integers * * Current parameters assume a large 32-bit address space is available. * * This program is cobbled together from the implementations of various *
www.eeworm.com/read/156528/11794965

m factor.m

function factor() %copyright 2005.4.21 %author lucky zhang %demix factor m=1024; b=1:m; r=0.99; beta=(1-r)*r.^(m-b); plot(b,beta);
www.eeworm.com/read/258434/11864782

c factor.c

/* ** factor.c -- print prime factorization of a number ** Ray Gardner -- 1985 -- public domain ** Modified Feb. 1989 by Thad Smith > public domain ** ** This version takes numbers up to the limi
www.eeworm.com/read/257588/11920180

m factor.m

function f=factor(n) if n
www.eeworm.com/read/154760/11928968

m factor.m

function n = factor(x) %FACTOR Factor an integer % % Y=FACTOR(X) returns factors of X in vector Y such that prod(Y)=X. % % FACTOR (with no input arguments) invokes the following exampl