代码搜索:factor

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

代码结果 6,651
www.eeworm.com/read/381959/9060745

h factor.h

#include "Matrix.h" // Factor.h: interface for the Factor class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_FACTOR_H__C5426C88_4CD6_46BF_B320_0CE4
www.eeworm.com/read/381959/9060747

cpp factor.cpp

// Factor.cpp: implementation of the Factor class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "ProGram2.h" #include "Factor.h" #incl
www.eeworm.com/read/381207/9104883

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/180268/9314117

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/364809/9894130

m factor.m

www.eeworm.com/read/364310/9912867

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/363713/9939538

m factor.m

function f=factor(n) if n
www.eeworm.com/read/359581/10135254

c factor.c

// factor.c -- uses loops and recursion to calculate factorials #include long fact(int n); long rfact(int n); int main(void) { int num; printf("This program calculates facto
www.eeworm.com/read/358609/10183930

m factor.m

function f=factor(n) if n
www.eeworm.com/read/356874/10219841

c factor.c

// factor.c -- uses loops and recursion to calculate factorials #include long fact(int n); long rfact(int n); int main(void) { int num; printf("This program calculates facto