代码搜索:Problem

找到约 10,000 项符合「Problem」的源代码

代码结果 10,000
www.eeworm.com/read/257423/6356495

m c5ex10.m

% First part of problem num = [0 0 15 25 20]; den = [1 10 17 10 16]; [R, P, k] = residue(num, den) % Second part of problem D1 = [1 0 1]; D2 = [0 1 2]; D3 = [0 1 8]; den = conv(D1, conv(D2,D3))
www.eeworm.com/read/489084/6482585

m ip_07_11.m

% MATLAB script for Illustrative Problem 11, Chapter 7 echo on num=[0.01 1]; den=[1 1.01 1]; [a,b,c,d]=tf2ss(num,den); dt=0.01; u=ones(1,2000); x=zeros(2,2001); for i=1:2000 x(:,i+1)=x(:,i)
www.eeworm.com/read/488461/6487294

m ip_01_01.m

% MATLAB script for Illustrative Problem 1, Chapter 1. n=[-20:1:20]; x=abs(sinc(n/2)); stem(n,x);
www.eeworm.com/read/488464/6487365

m ip_04_04.m

% MATLAB script for Illustrative Problem 4.4. echo on ; a=[-10,-5,-4,-2,0,1,3,5,10]; for i=1:length(a)-1 y(i)=centroid('normal',a(i),a(i+1),0.001,0,1); echo off ; end
www.eeworm.com/read/488464/6487371

m il4_8fun.m

% The function needed in Illustrative Problem 8, Chapter 4. function f=il4_8fun(x,p) f=1/sqrt(2*pi)*exp((-(x-p).^2)/2).*log2(2./(1+exp(-2*x.*p)));
www.eeworm.com/read/487789/6508868

txt readme.txt

Delphi VCLSkin 5.3 website : http://www.link-rank.com email : info@link-rank.com VCLSkin is a component to create skinnable user interface for Delphi/C++Builder application, It
www.eeworm.com/read/486654/6524065

cpp 1196.cpp

/* This Code is Submitted by wywcgs for Problem 1196 on 2006-01-10 at 01:26:22 */ #include const int MAX = 128; const int LAST = 13; int main() { int i, j, n, m[MAX]; for(i
www.eeworm.com/read/486654/6524082

cpp 1500.cpp

/* This Code is Submitted by wywcgs for Problem 1500 on 2006-01-29 at 02:12:40 */ #include #include using namespace std; int main() { int i, j, hanoi[13] = { 0, 1 };
www.eeworm.com/read/486654/6524084

cpp 1871.cpp

/* This Code is Submitted by wywcgs for Problem 1871 on 2005-09-25 at 21:50:42 */ #include int main() { unsigned long K, fact[7]; int N, i, j; char hex[8]; fact[0] = 1; f
www.eeworm.com/read/486654/6524098

cpp 1171.cpp

/* This Code is Submitted by wywcgs for Problem 1171 on 2006-11-13 at 21:45:36 */ #include #include using namespace std; const int N = 32; int main() { int n, m, g[N