代码搜索:evaluate
找到约 3,619 项符合「evaluate」的源代码
代码结果 3,619
www.eeworm.com/read/449132/7517916
m chemreac23.m
function [out] = ChemReac23(t, y)
%
% Evaluate the right hand side function for the
% chemical reaction system
%
% y_1'(x) = -k1*y_1(x)
% y_2'(x) = k1*y_1(x) - k2*y_2(x)
% y_3'(x) =
www.eeworm.com/read/199778/7823019
m program_10_3.m
% Program 10_3
% Effect of Up-sampling in the Frequency Domain
% Use fir2 to create a bandlimited input sequence
freq = [0 0.45 0.5 1];
mag = [0 1 0 0];
x = fir2(99, freq, mag);
% Evaluate and p
www.eeworm.com/read/199778/7823033
m program_10_4.m
% Program 10_4
% Effect of Down-sampling in the Frequency Domain
% Use fir2 to create a bandlimited input sequence
freq = [0 0.42 0.48 1];
mag = [0 1 0 0];
x = fir2(101, freq, mag);
% Evaluate a
www.eeworm.com/read/199774/7823295
m program_10_3.m
% Program 10_3
% Effect of Up-sampling in the Frequency Domain
% Use fir2 to create a bandlimited input sequence
freq = [0 0.45 0.5 1];
mag = [0 1 0 0];
x = fir2(99, freq, mag);
% Evaluate and p
www.eeworm.com/read/199774/7823335
m program_10_4.m
% Program 10_4
% Effect of Down-sampling in the Frequency Domain
% Use fir2 to create a bandlimited input sequence
freq = [0 0.42 0.48 1];
mag = [0 1 0 0];
x = fir2(101, freq, mag);
% Evaluate a
www.eeworm.com/read/296518/8097902
h calc.h
#include
#include
//#pragma hdrstop
enum Boolean {False, True};
#include "astack.h" // include Stack class
class Calculator
{
private:
// private m
www.eeworm.com/read/296518/8097925
h calc.h
#include
#include
//#pragma hdrstop
enum Boolean {False, True};
#include "astack.h" // include Stack class
class Calculator
{
private:
// private m
www.eeworm.com/read/144399/12797360
m fx3n.m
function [f,dfdx] = fx3n(x)
% fx3n Evaluate f(x) = x - x^(1/3) - 2 and dfdx for Newton algorithm
f = x - x.^(1/3) - 2;
dfdx = 1 - (1/3)*x.^(-2/3);
www.eeworm.com/read/144399/12797482
m rhsdecay.m
function dydt = rhsDecay(t,y,flag,alpha)
% rhsDecay Evaluate rhs of dy/dt = -alpha*y with a variable alpha.
% "flag" parameter is required for compatability with ode45
dydt = -alpha*y;
www.eeworm.com/read/144399/12797665
m expmx2.m
function y = expmx2(x)
% expmx2 Evaluate exp(-x^2), where x is a scalar or vector
y = exp(-x.^2);