代码搜索:INTERVAL
找到约 8,094 项符合「INTERVAL」的源代码
代码结果 8,094
www.eeworm.com/read/446547/7577111
java go.java
import java.awt.*;
import java.util.*;
//import javax.swing.*;
//import java.awt.image.*;
public class Go extends Panel
{
int whichStep;
Hashtable myHash;
Point pointNow;//当前的点
Point
www.eeworm.com/read/445829/7589576
m test.m
t0=.15; % signal duration
ts=0.001; % sampling interval
% the message vector
m=[ones(1,t0/(3*ts)),-2*ones(1,t0/(3*ts)),zeros(1,t0/(3*ts)+1)];
m_hat=imag(hil
www.eeworm.com/read/445823/7589615
m loweq.m
function xl=loweq(x,ts,f0)
% xl=loweq(x,ts,f0)
%LOWEQ returns the lowpass equivalent of the signal x
% f0 is the center frequency.
% ts is the sampling interval.
%
t=[
www.eeworm.com/read/443159/7636759
m laguerre.m
function [x, fx, evals, iters, badinds] = laguerre(fun, dfun, ddfun, x0, n, varargin)
%LAGUERRE Root finder -- Laguerre's method
%
% [x, fval] = LAGUERRE(fun, dfun, ddfun, x0, n) returns
www.eeworm.com/read/443159/7636760
m regulafalsi.m
function [x, fval, evals, iters, badinds] = regulafalsi(fun, a, b, varargin)
% REGULAFALSI Regula Falsi (derivative-free) root finding algorithm.
%
% [x, fsol, evals] = REGULAFALSI(fun, a,
www.eeworm.com/read/442608/7648778
m~ prf.m~
function PRF=prf(PRI)
% PRF Pulse Repitition Frequency (pulsed radar)
%
% PRF = prf(PRI)
%
% PRI = pulse repitition frequency [Hz]
% PRI = pulse repitition interval [s]
%
% AIM: To convert
www.eeworm.com/read/442608/7648788
m pri.m
function PRI=pri(PRF)
% PRI Pulse repetition Interval (pulsed radar)
%
% PRI = pri(PRF)
%
% PRF = pulse repetition frequency [Hz]
% PRI = pulse repetition interval [s]
%
% AIM: To convert f
www.eeworm.com/read/442608/7648790
m prf.m
function PRF=prf(PRI)
% PRF Pulse repetition Frequency (pulsed radar)
%
% PRF = prf(PRI)
%
% PRF = pulse repetition frequency [Hz]
% PRI = pulse repetition interval [s]
%
% AIM: To convert
www.eeworm.com/read/442608/7648814
m mur.m
function MUR=mur(PRI)
% MUR Maximum Unambiguous Range (pulsed radar)
%
% R=mur(PRI)
%
% PRI = pulse repetition interval [s]
% MUR = max unambiguous range [m]
%
% AIM: To determine the maxim
www.eeworm.com/read/442608/7648855
m muri.m
function PRI=muri(MUR)
% MURI Pulse Interval required to achieve given Maximum Unambiguous Range
%
% PRI=muri(R)
%
% PRI = pulse repetition interval [s]
% MUR = max unambiguous range [m]
%
%