代码搜索:ratio
找到约 4,372 项符合「ratio」的源代码
代码结果 4,372
www.eeworm.com/read/282822/9057833
$$$ ratio.$$$
www.eeworm.com/read/191613/8425905
cpp ratio.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Ratio.cpp from pages
// Implementation of the Ratio class
#include // defines the a
www.eeworm.com/read/191613/8426356
h ratio.h
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Ratio.h
// Interface for the Ratio class
// WARNING: early version of the Microsoft Visual C++
www.eeworm.com/read/356556/10224786
m ratio.m
%%%%% 循环谱检测OFDM信号 %%%%%
clear;
clc;
%%% OFDM参数 %%%
%数据长度的1/8必须大于等于循环谱采样长度
%数据速率 6-BPSK, 12-QPSK
%%%%%%%%%%%%%%%%
TXVECTOR.LENGTH = 2000; % 数据长度
TXVECTOR.DATARATE = 6; % 数据速率
trst_rate = 20
www.eeworm.com/read/353256/10459094
cpp ratio.cpp
#include "stdafx.h"
#include "math.h"
double Calculate_SNR(CString SourceFileName,CString ObjectFileName)
{
long i,size;
double temp,error;
char msg[30];
CFile cSourceFile,cObjectFile;
www.eeworm.com/read/223536/14636508
m ratio.m
function [r]=Ratio(BM)
r1=0;
r2=0;
for i=1:size(BM,1)
for j=1:size(BM{i},1)
if BM{i}{j}(5)==1
r1=r1+1;
end
r2=r2+1;
end
end
r=r1/r2;
www.eeworm.com/read/216575/15002558
m ratio.m
function ratio=ratio(X,Y)
% get the ratio X from Y
lenX=length(X);
lenY=length(Y);
count=0;
for m=1:lenX
if(find(Y==X(m)))
count=count+1;
end
end
ratio=count/lenX;
www.eeworm.com/read/216575/15002563
asv ratio.asv
function ratio=ratio(X,Y)
% get the ratio X from Y
lenX=length(X);
lenY=lenght(Y);
count=0;
for m=1:lenX
if(find(Y==X(m)))
count=count+1;
end
end
ratio=count/lenY;