代码搜索:Calculation
找到约 2,005 项符合「Calculation」的源代码
代码结果 2,005
www.eeworm.com/read/209853/15212834
h namespaceoverriding2.h
//: C10:NamespaceOverriding2.h
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
#ifndef NAMESPACEOVERRID
www.eeworm.com/read/162614/5529043
c struct-by-value-2.c
/* This testcase caused a sanity check to abort on SPARC64
because of a discrepancy between two functions involved
in the calculation of structure layout. */
/* { dg-do compile } */
struct S
www.eeworm.com/read/475765/6778071
m ex4_11.m
%EX4_11.M Example to show matrix operations (A^2, A^5, exp(A))
% Requires Symbolic Math Toolbox
%
A=[1 0 0;0 2 0;0 0 3]
Asq=A^2 % Matrix power A*A
Afifth=A^5 % A*A*A*A*A
expA=expm(
www.eeworm.com/read/475765/6778140
m ex10_1.m
% EX10_1.M MATLAB solution of the compound interest equation
% y(nT)=y(nT-T) + (p/100)*y(nT-T)
% for p = 6 percent and initial deposit y0 = $ 1000
% y(n) represents the balance after the n
www.eeworm.com/read/471742/6888577
txt ho2_2.txt
ho2_2.txt
>> ho2
Enter the title name TTL:Falling with v^2 air resistance
Enter the number calculation steps desired NPTS: 200
Enter the run time TMAX: 10
Enter value of gravity G: 9.8
En
www.eeworm.com/read/471742/6888581
txt ho1_4.txt
ho1_4.txt
>> ho1
Enter the title name TTL:Forced Harmonic Oscillator with Damping
Enter the number calculation steps desired NPTS: 200
Enter the run time TMAX: 20
Enter the Spring contant K
www.eeworm.com/read/193480/8225383
pas wucrc32.pas
{*******************************************************************}
{ CRC32 calculation of file }
{ for Delphi 3.0,4.0,5.0,6.0 - C++Builder 3,4,5
www.eeworm.com/read/366900/9793721
h namespaceoverriding2.h
//: C10:NamespaceOverriding2.h
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
#ifndef NAMESPACEOVERRID
www.eeworm.com/read/268260/11146946
m ex080400.m
% Chapter 8: Example 8.4
% Butterworth Lowpass Analog filter design
%
Wp = 0.2*pi; Ws = 0.3*pi; Rp = 7; As = 16;
Ripple = 10 ^ (-Rp/20); Attn = 10 ^ (-As/20);
% Analog filter design:
www.eeworm.com/read/268260/11146949
m ex080700.m
% Chapter 8: Example 8.7
% Chebyshev-2 Lowpass Analog filter design
%
Wp = 0.2*pi; Ws = 0.3*pi; Rp = 1; As = 16;
Ripple = 10 ^ (-Rp/20); Attn = 10 ^ (-As/20);
% Analog filter design: