代码搜索:Method
找到约 10,000 项符合「Method」的源代码
代码结果 10,000
www.eeworm.com/read/217613/14957127
m method2.m
function y = method2(n)
%利用method1 Sn' = Sn - (Sn - Sn-1)^2/(Sn-2*Sn-1+Sn-2), n = 3,4,...
%则Ln2 = Sn'
if nargin == 0
fprintf('Not enough parameter for method2');
elseif n < 3
n = 3;
www.eeworm.com/read/217613/14957129
m method3.m
function y = method3(n)
%利用级数Ln2 = 1/1×2 + 1/2×2^2 + 1/3×2^3 + … = symsum('1/(k*2^k)', 'k', 1,
%inf);
if nargin == 0
fprintf('Not enough parameter for method3');
elseif n < 1
n = 1;
www.eeworm.com/read/217613/14957133
m method1.m
function y = method1(n)
%利用级数Ln2 = 1 - 1/2 + 1/3 - 1/4 + ... = symsum((-1)^(k-1)/k, 1, inf)
%计算Ln2
if nargin == 0
fprintf('Not enough parameter for method\n');
elseif n < 1
n = 1;
else
www.eeworm.com/read/115343/15017077
hpp method_rep.hpp
// Copyright (c) 2003 Daniel Wallin and Arvid Norberg
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "S
www.eeworm.com/read/210472/15198435
doc filtrate_method.doc
www.eeworm.com/read/209351/15223071
gif highlight_method.gif
www.eeworm.com/read/209351/15223079
gif method_list.gif
www.eeworm.com/read/209351/15223092
gif method_hi.gif
www.eeworm.com/read/209351/15223097
gif open_method.gif
www.eeworm.com/read/208909/15233064
c print_method.c
#define LCD_LCCR0 (*(volatile unsigned long *)(0x44000000))
#define LCD_FDADR0 (*(volatile unsigned long *)(0x44000200))
#define LCD_FSADR0 (*(volatile unsigned long *)(0xa0300004))
#define LCD_LC