代码搜索:Problem

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

代码结果 10,000
www.eeworm.com/read/300086/13936627

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/300086/13936640

m ip_04_04.m

% MATLAB script for Illustrative Problem 4, Chapter 4. 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); end
www.eeworm.com/read/300086/13936710

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/134656/13978167

txt mathworks.txt

Solution Number: 26990 Date Last Modified: 2001-01-30 Product: MATLAB 6.0 ==> Current Version Platform: Windows Problem Description Why do I encounter problems when running MATLA
www.eeworm.com/read/236439/14016548

cpp dnw.cpp

#define STRICT #define WIN32_LEAN_AND_MEAN #include #include #include #include #include #include #include
www.eeworm.com/read/236439/14016567

bak dnw.cpp.bak

#define STRICT #define WIN32_LEAN_AND_MEAN #include #include #include #include #include #include #include
www.eeworm.com/read/236108/14031592

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/133137/14053864

dyck readme.dyck

************************************************************************* GPDATA Version 3 release Easter 1997 W.B.Langdon for the dyck language problem as described in GP-96 $Revision: 1.4 $. NB Th
www.eeworm.com/read/132953/14065252

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/132953/14065299

m ip_04_04.m

% MATLAB script for Illustrative Problem 4, Chapter 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