代码搜索:INTERVAL
找到约 8,094 项符合「INTERVAL」的源代码
代码结果 8,094
www.eeworm.com/read/186071/8962704
cpp jose1.cpp
//***************************
//** Josephus问题解法1 **
//** jose1.cpp **
//***************************
#include
void main()
{
//建立小孩数组
const int num=10; //
www.eeworm.com/read/383032/8980572
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=[0:ts:ts*(lengt
www.eeworm.com/read/426666/9006671
risultati_finali
[*] Results for Insertion sort
[*] Details : length array :100, Number of test to reorder 500, Number of rips 8700
[*] Medium time : 0.0545839, Varianza : 1.44086e-05, Delta :0.000332722
www.eeworm.com/read/426666/9006705
ultimi
[*] Results for optimus
[*] Details : length array :10, Number of test to reorder 500, Num of rips 73460
[*] Medium time : 0.00117588, Varianza : 3.08903e-08, Delta :1.54057e-05
[*]
www.eeworm.com/read/426648/9007502
asv bisection.asv
function y=bisection(a,b)
fprintf('
for i=1:5
if (f(a)*f(b))
www.eeworm.com/read/426642/9007575
asv bisection.asv
function y=bisection(a,b)
fprintf('
for i=1:5
if (f(a)*f(b))
www.eeworm.com/read/283431/9021365
pas main.pas
unit main;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls;
type
TForm1 = class(TForm)
Label2: TLabel;
www.eeworm.com/read/283202/9035655
cpp d3r6.cpp
#include "iostream.h"
#include "math.h"
#include "string.h"
char choose[10];
double funcl(double x)
{
return sqrt(x) / sin(x);
}
double funcu(double x)
{
double pi = 3.1415926;
www.eeworm.com/read/283038/9046001
m girem.m
% Function 4-4
% girem.m
%
% Function to remove guard interval from received signal
%
% Programmed by T.Yamamura and H.Harada
%
function [iout,qout]= girem(idata,qdata,fftlen2,gilen,nd);
%
www.eeworm.com/read/184793/9075161
txt 用结构解josephus.txt
用环链解决
#include
#include
struct jose //小孩结点
{
int code;
jose * next;
}
void main()
{
//赋初值
int numofboys,interval;
cout