代码搜索:CLOSE
找到约 10,000 项符合「CLOSE」的源代码
代码结果 10,000
www.eeworm.com/read/464287/7166607
m b8.m
I1=imread('saturn.tif');
I2=im2bw(I1);
figure,imshow(I2)
I3=imnoise(I2,'salt & pepper');
figure,imshow(I3)
I4= bwmorph(I3,'open');
figure,imshow(I4)
I5= bwmorph(I4,'close');
figure,imshow(I5)
www.eeworm.com/read/464114/7169500
m chap2_7plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('Position tracking');
figure(2);
plot(Ff(:,1),Ff(:,2),'r');
xlabel('Angle speed');ylabel('Friction force');
www.eeworm.com/read/464114/7169509
m chap2_8plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('Position tracking');
figure(2);
plot(t,u(:,1),'r');
xlabel('time(s)');ylabel('Control input');
c=5;
figur
www.eeworm.com/read/464101/7169737
m m2.m
% M-file for Project 2 on space vectors in Chapter 5.
% m2.m prompts the user for the values of m, n and attenuation
% factor used in the SIMULINK file s2.m
% It also plots the results of th
www.eeworm.com/read/464077/7169908
bak 程序1.bak
CLOSE ALL
CLEAR ALL
SET CENTURY ON && 显示四位年代
SET HOURS TO 24
_SCREEN.VISIBLE=.F.
read events
www.eeworm.com/read/464077/7169909
prg 程序1.prg
CLOSE ALL
CLEAR ALL
SET CENTURY ON && 显示四位年代
SET HOURS TO 24
_SCREEN.VISIBLE=.F.
do form forms\index.scx
read events
www.eeworm.com/read/463958/7171610
java 客户端.java
import java.io.*;
import java.net.*;
public class Client
{
Socket socket;
BufferedReader in;
PrintWriter out;
public Client()
{
try
{
socket = new Socket("xxx.xxx.xxx.xxx", 1
www.eeworm.com/read/463958/7171611
java 服务器.java
import java.net.*;
import java.io.*;
public class Server
{
private ServerSocket ss;
private Socket socket;
private BufferedReader in;
private PrintWriter out;
public Server()
{