代码搜索:Problem
找到约 10,000 项符合「Problem」的源代码
代码结果 10,000
www.eeworm.com/read/221024/14772833
html http:^^www.cs.washington.edu^education^courses^321^96f^hw7.html
Date: Tue, 10 Dec 1996 16:51:42 GMT
Server: NCSA/1.4.2
Content-type: text/html
CSE 321 Assignment #7
CSE 321 Assignment #7Autumn 1996
Due:
www.eeworm.com/read/221024/14774551
html http:^^www.cs.cornell.edu^info^courses^spring-95^cs314^hw^hw3.html
MIME-Version: 1.0
Server: CERN/3.0
Date: Monday, 16-Dec-96 23:19:07 GMT
Content-Type: text/html
Content-Length: 1345
Last-Modified: Monday, 13-Mar-95 14:33:34 GMT
CS 314:
www.eeworm.com/read/221024/14775346
html http:^^www.cs.wisc.edu^~curt^wgnats^what.html
Date: Tue, 05 Nov 1996 21:03:12 GMT
Server: NCSA/1.5
Content-type: text/html
Last-modified: Wed, 28 Feb 1996 13:48:16 GMT
Content-length: 2095
Gnats for Paradise
Gnats for Para
www.eeworm.com/read/221024/14776802
html http:^^www.cs.utexas.edu^users^dwip^cs304p^test_sol^midterm1_sol.html
MIME-Version: 1.0
Server: CERN/3.0
Date: Monday, 06-Jan-97 20:49:38 GMT
Content-Type: text/html
Content-Length: 7375
Last-Modified: Tuesday, 08-Oct-96 21:43:57 GMT
Soluti
www.eeworm.com/read/120261/14808618
1 lp_solve.1
.TH LP_SOLVE 1
.SH NAME
lp_solve \- Solve (mixed integer) linear programming problem.
.SH SYNOPSIS
lp_solve [option]* "
www.eeworm.com/read/219652/14871635
txt readme.txt
In this M-file, Algorithm of MAX-MIN Ant System(MMAS) is implemented, it was supposed to work better than AS and ACS. MMAS can be easily used as following command to see the playing iterative course.
www.eeworm.com/read/216045/15028711
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/216045/15028716
m ip_01_01.m
% MATLAB script for Illustrative Problem 1, Chapter 1.
clear
n=[-20:1:20];
x=abs(sinc(n/2));
stem(n,x);
www.eeworm.com/read/216045/15028724
m ip_07_11.m
% MATLAB script for Illustrative Problem 11, Chapter 7
clear
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)
www.eeworm.com/read/216045/15028798
m ip_04_04.m
% MATLAB script for Illustrative Problem 4.4.
clear
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