代码搜索结果

找到约 10,000 项符合 5 的代码

example5_5.m

I = imread('rice.tif'); BW = roicolor(I,150,200); imshow(I); figure; imshow(BW)

chapter5-5.cpp

//文件名:CHAPTER5-5.cpp #include #include using namespace std; int main () { deque< int > d; d.push_back (4); // Add after end. d.push_back (9); d.push_back (16); d.pu

listing 5-5.java

import javax.microedition.midlet.*; import javax.microedition.lcdui.*; public class OnlineHelp extends MIDlet implements CommandListener { private Display display; private Command back; pr

examp5_5.m

syms t; y=sym('f(t)') % 定义原函数 laplace(diff(y,t,2)) laplace(diff(y,t,8))

chap5_5.m

%GA(Generic Algorithm) to Optimize Online PID Control clear all; close all; Size=120; CodeL=2; MinX(1)=9*ones(1);MaxX(1)=12*ones(1); MinX(2)=0.20*ones(1);MaxX(2)=0.30*ones(1); Kpid(:,1)=M

program_5_5.m

% Program 5_5 % Illustration of Overlap-Add Method % % Generate the noise sequence R = 64; d = rand(R,1)-0.5; % Generate the uncorrupted sequence and add noise k = 0:R-1; s = 2*k.*(0.9.^k); x

soln5_5.cpp

// Soln5_5.cpp #include #include using std::cin; using std::cout; using std::endl; char* parse(const char* str) { static char* pStr = 0; static size_t len; s