代码搜索:Problem
找到约 10,000 项符合「Problem」的源代码
代码结果 10,000
www.eeworm.com/read/452217/7444887
cpp ssprob.cpp
// Copyright Andy Singleton, 1993,1994
// This code is released for non-commercial use only
// For questions or upgrades contact:
// Andy Singleton, Creation Mechanics Inc.
// PO Box 248, Peterbor
www.eeworm.com/read/452050/7451329
c 1858238_ac_0ms_24k.c
# include
void main()
{
int N;
int i, j;
int x, y, a, b;
int tmp;
scanf("%d",&N);
for(i = 1; i
www.eeworm.com/read/451979/7452526
txt history.txt
AlphaControls :: history
12.03.2007 AlphaControls v5.40 beta
* Solved problem with automatic TsRadioGroup changing when DataSource.AutoEdit property is disabled
* Solved problem in RichEdit
www.eeworm.com/read/206731/7456548
cpp ssprob.cpp
// Copyright Andy Singleton, 1993,1994
// This code is released for non-commercial use only
// For questions or upgrades contact:
// Andy Singleton, Creation Mechanics Inc.
// PO Box 248, Peterbor
www.eeworm.com/read/448535/7531333
m simplex1.m
function [x,value,w] = simplex1(A,b,c,freevars)
%
% Find the solution of a linear programming problem in standard form
% minimize c'x
% subject to Ax=b
% x >= 0
%
% function [x,v
www.eeworm.com/read/445830/7589531
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/445830/7589537
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/445823/7589628
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/445823/7589636
asv ip_01_01.asv
% MATLAB script for Illustrative Problem 1, Chapter 1.
%|xn|和角度xn与n的关系曲线就是x(t)的离散频谱
n=[-20:1:20];
x=abs(sinc(n/2));
stem(n,x);
www.eeworm.com/read/442447/7651417
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