代码搜索:Calculation
找到约 2,005 项符合「Calculation」的源代码
代码结果 2,005
www.eeworm.com/read/362892/9977319
m start_calculation.m
%此为计算感觉噪度级的脚本程序
%程序开始部分将EXCEL表格中的数据导入,最后将计算得到的结果导出到pnl.xls中
clear;
spl=xlsread('spl_band.xls');%导入声压级数据
noys=xlsread('noys_cur.xls');%导入等噪度表
pnl=pnl_calculation(spl,noys);%进行计算
pnl=[spl,pnl];
u
www.eeworm.com/read/362892/9977325
m pnl_calculation.m
function pnl_band= pn_calculation(spl_band, noys_cur)
% 本函数为计算噪度的程序,需要输入信号的三分之一倍频带(中心频率53——10000赫兹)的声压级,并要输入等噪度表格。
%本程序返回值为噪度值矩阵,此矩阵的说明见函数最后一条说明。
[e,f]=size(spl_band);%得到声压级信号的尺寸
[m,n]=size(noys_c
www.eeworm.com/read/279986/10371397
c power_calculation.c
//**************************************************************************
// This routine takes an average power input, add all the scalling factors to
// turn this into watts. This part i
www.eeworm.com/read/161076/10456512
m calculation2.m
R = round(100*get(HF9,'Value'))/100;
r = round(100*get(HF10,'Value'))/100;
h = round(100*get(HF11,'Value'))/100;
set(HF1,'String',R);
set(HF2,'String',r);
set(HF3,'String',h);
t = R^2/(5*r
www.eeworm.com/read/492285/6420595
doc matrix_calculation.doc
www.eeworm.com/read/344027/11911859
m the_calculation_of_pi.m
%本程序是采用蒙特卡罗仿真计算圆周率的统计方法。
%每次采用N组数据(N个点)来计算圆周率,共计算NUM次,最后对计算结果进行统计平均。
format long;
%-------------------------------------------------------------------------------------
NUM=200;
figure(1);
for c
www.eeworm.com/read/128828/14277744
c power_calculation.c
//**************************************************************************
// This routine takes an average power input, add all the scalling factors to
// turn this into watts. This part i
www.eeworm.com/read/128828/14277765
c power_calculation.c
//**************************************************************************
// This routine takes an average power input, add all the scalling factors to
// turn this into watts. This part i
www.eeworm.com/read/217458/14962965
vhd calculation2.vhd
-- 0-100以内计算器的运算控制模块 --
--输入:两位BCD表示的运算数,操作码(+,-,x,/)和控制码(=,CLR)
--输出:BCD码表示的运算结果,当选择除法时有BCD码表示的余数输出
--功能:实现对运算数的加减乘除运算,除法时显示商和余数
--注意运算中若加法结果大于100,乘法结果在100与255之间,或者除数为0时
--本系统输出两个EE表示操作出错 ...