代码搜索:Calculation
找到约 2,005 项符合「Calculation」的源代码
代码结果 2,005
www.eeworm.com/read/403014/11523823
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/347848/11632868
java firstprogram.java
public class FirstProgram
{
public static void main(String[] args)
{
System.out.println("Hello reader.");
System.out.println("Welcome to Java.");
System.out.p
www.eeworm.com/read/346994/11706134
cs app.cs
// app.cs - A sample C# application
//-----------------------------------------------
using System;
class sample
{
public static void Main()
{
//Declare variables
www.eeworm.com/read/346994/11706887
c calc.c
/* Module containing calculation functions. */
#include "calc.h"
long sqr(int x)
{
return ((long)x * x);
}
www.eeworm.com/read/259886/11759522
m mydtf.m
function d = mydtf(n,a)
%MYDTF Example custom transfer derivative function of MYTF.
%
% Use this function as a template to write your own function.
%
% Syntax
%
% dA_dN = mydtf(N,A)
%
www.eeworm.com/read/156653/11786400
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:
[b,a]
www.eeworm.com/read/156653/11786402
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:
[b,a]
www.eeworm.com/read/156653/11786418
m ex080600.m
% Chapter 8: Example 8.6
% Chebyshev-1 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:
[b,a]
www.eeworm.com/read/156653/11786424
m ex080800.m
% Chapter 8: Example 8.8
% Elliptic 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:
[b,a] =
www.eeworm.com/read/259220/11814749
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