代码搜索:Line
找到约 10,000 项符合「Line」的源代码
代码结果 10,000
www.eeworm.com/read/473082/6855465
java textpanel.java
/* TextPanel class */
import java.util.StringTokenizer;
import java.awt.*;
import java.io.*;
import java.net.*;
/**
* Text panel to display the source code of the animation algorithm.
* This class
www.eeworm.com/read/473082/6855497
java textpanel.java
/* TextPanel class */
import java.util.StringTokenizer;
import java.awt.*;
import java.io.*;
import java.net.*;
/**
* Text panel to display the source code of the animation algorithm.
* This class
www.eeworm.com/read/473082/6855638
java textpanel.java
/* TextPanel class */
import java.util.StringTokenizer;
import java.awt.*;
import java.io.*;
import java.net.*;
/**
* Text panel to display the source code of the animation algorithm.
* This class
www.eeworm.com/read/473082/6855689
java textpanel.java
/* TextPanel class */
import java.util.StringTokenizer;
import java.awt.*;
import java.io.*;
import java.net.*;
/**
* Text panel to display the source code of the animation algorithm.
* This class
www.eeworm.com/read/473082/6855732
java textpanel.java
/* TextPanel class */
import java.util.StringTokenizer;
import java.awt.*;
import java.io.*;
import java.net.*;
/**
* Text panel to display the source code of the animation algorithm.
* This class
www.eeworm.com/read/471460/6894126
m chp8ex3.m
fprintf('\n Wait simulation is in process. \n')
VF = 400; rF = 0.4; iF0 = VF/rF;
f = 60; w = 2.*pi*f;
d = 0; d = d*pi/180;
t0 = 0 ; tfinal = 0.80;
i0 = [0; iF0; 0; 0;]; % Initial
www.eeworm.com/read/295361/8168152
c krx11900.c
#include
#define MAX_LINE 1024
void discardnewline(char s[])
{
int i;
for(i = 0; s[i] != '\0'; i++)
{
if(s[i] == '\n')
s[i] = '\0';
}
}
int reverse(char s[
www.eeworm.com/read/193379/8233863
m lmse.m
%function [bi,r,d]=lmse(uu,w0,g,N,k);
% g=400; % 统计仿真次数为g
% N=1000; % 输入信号抽样点数N
% k=11; % 时域抽头LMS算法滤波器阶数
% u步长
% ww 通信信道参数
pp=zeros(g,N-k); % 将每次独立循环的误差结果存于矩阵pp中,以便后面对其平均
u=0.02;
n=1:3;
www.eeworm.com/read/268481/11136829
cpp 6_8.cpp
#include
void main()
{
int line1[]={1,0,0}; //声明数组,矩阵的第一行
int line2[]={0,1,0}; //声明数组,矩阵的第二行
int line3[]={0,0,1}; //声明数组,矩阵的第三行
int *p_line[3]; //声明整型指针数组
p_line[0]=line1;
www.eeworm.com/read/113601/15452450
c intprint.c
/************************************************************************/
/* INTPRINT.C by Ralf Brown. Donated to the Public Domain. */
/* Please do not remove my name from any copies or derivati