代码搜索:Compute
找到约 10,000 项符合「Compute」的源代码
代码结果 10,000
www.eeworm.com/read/403190/2314799
svn-base compute_edge_face_ring.m.svn-base
function A = compute_edge_face_ring(face)
% compute_edge_face_ring - compute faces adjacent to each edge
%
% e2f = compute_edge_face_ring(face);
%
% e2f(i,j) and e2f(j,i) are the number of the tw
www.eeworm.com/read/300661/13901366
pdf nineteen dubiousways to compute the exponential of a matrix2003.pdf
www.eeworm.com/read/448535/7531493
m fact.m
function x = fact(n)
% compute the factorial
x =prod(1:n);
www.eeworm.com/read/300969/13874770
c icompute.c
/*
* icompute.c - compute an integer
*/
/* $Header: icompute.c,v 1.1 89/12/18 14:59:38 eck Exp $ */
#include "loc_incl.h"
/* This routine is used in doprnt.c as well as in tmpfile.c and tmp
www.eeworm.com/read/113399/6131631
c icompute.c
/*
* icompute.c - compute an integer
*/
/* $Header: icompute.c,v 1.1 89/12/18 14:59:38 eck Exp $ */
#include "loc_incl.h"
/* This routine is used in doprnt.c as well as in tmpfile.c and tmp
www.eeworm.com/read/160611/5568803
alg pwl.alg
(PWL-ALG
(NAME "pwl")
(ARGUMENTS ("time_type" "t0") ("rate_type" "sr") ("LVAL" "lis"))
(SUPPORT-FUNCTIONS "
/* IMPLEMENTATION NOTE:
* The lis argument is a list of alternating sample numbers an
www.eeworm.com/read/433114/8545463
m contents.m
% GEOPHYSICS_3
%
% Files
% add_curve_type - Function adds curve type info to a log structure if a field "curve_type" exists
% ds_add_header - Add one
www.eeworm.com/read/427909/8913180
m factorial.m
function x = factorial(n)
% FACTORIAL Compute n!
% x = factorial(n)
if n == 0
x = 1;
else
x = n*factorial(n-1);
end
www.eeworm.com/read/373250/9467365
m factorial.m
function x = factorial(n)
% FACTORIAL Compute n!
% x = factorial(n)
if n == 0
x = 1;
else
x = n*factorial(n-1);
end