代码搜索:Problem

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

代码结果 10,000
www.eeworm.com/read/242302/13048822

html 12051.html

License problem License problem
www.eeworm.com/read/242302/13049008

html 12049.html

License problem License problem
www.eeworm.com/read/140851/13058879

m hungarian.m

function [C,T]=hungarian(A) %HUNGARIAN Solve the Assignment problem using the Hungarian method. % %[C,T]=hungarian(A) %A - a square cost matrix. %C - the optimal assignment. %T - the cost of the
www.eeworm.com/read/242302/13071978

html 16781.html

A little problem. How to test the field is "Null" A little problem. How t
www.eeworm.com/read/240953/13186386

m mcpanneal.m

%function [e,f]=MCPanneal(L,s,t,dt,w,N) %最大截问题(Max Cut Problem)的退火算法 %由于算法的缺陷,当f值在较长时间内不再改变时,可用cl+c停止程序 %N为问题规模,即节点个数;w为权矩阵 %L可取较大值,如500、1000; %s取1、2等;t为初始温度,参考范围为0.5--2; %dt为衰减因子,一般不小于0.9; %e为
www.eeworm.com/read/240949/13186414

m ispanneal.m

%function [e,f]=ISPanneal(L,s,t,dt,lamda,w,N) % %独立集问题(Independent Set Problem)的退火算法 %设有图G=(V,E),要找V的最大独立集,即找最大的V'属于V, %满足其中的任意两点都不关联 % %N为问题规模,即节点个数;w为权矩阵 %e为以0、1为元素的数组,来表示两个子集 %lamda是一个大于1的罚
www.eeworm.com/read/138798/13211849

m hungarian.m

function [C,T]=hungarian(A) %HUNGARIAN Solve the Assignment problem using the Hungarian method. % %[C,T]=hungarian(A) %A - a square cost matrix. %C - the optimal assignment. %T - the cost of the
www.eeworm.com/read/324448/13262711

txt ch1i.txt

Chapter 1 Data Structures and Algorithms: Instructor's CD questions 1. The primary purpose of most computer programs is a) to perform a mathematical calculation. *b) to store and retrieve
www.eeworm.com/read/324347/13271009

clp stove.clp

; ;******************************* ;** FINAL PROJECT ** ;** ** ;** BY THAD FIEBICH ** ;** FOR CSCI 5931 ** ;** EXPERT SYSTEMS
www.eeworm.com/read/323953/13306655

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