代码搜索:计算表
找到约 10,000 项符合「计算表」的源代码
代码结果 10,000
www.eeworm.com/read/292398/8358279
dat funtc5.dat
函数名 atan2
函数原型 double atan2(double x,double y);
功能 计算tan^-1/(x/y)的值.
返回值 计算结果
www.eeworm.com/read/292398/8358311
dat funtc9.dat
函数名 fabs
函数原型 double fabs(double x);
功能 求x的绝对值.
返回值 计算结果
www.eeworm.com/read/189078/8490714
txt 计算无重复组合的c语言源代码.txt
计算无重复组合的C语言源代码[原创]
int n,r;
int a[10];
void fun(int m,int k)
{
int i,j;
for(i=m;i>=k;i--)
{
a[k-1]=i;
if(k>1)
fun(i-1,k-1);
else
{
www.eeworm.com/read/189078/8490739
txt 重复组合的c语言源代码.txt
计算有重复组合的C语言源代码[原创]
int r;
int result[20]={0};
zuhe(int m,int k)
{
int i,j;
for(i=m;i>=0;i--)
{
result[k-1]=i;
if(k>1)
zuhe(i,k-1);
else
{
www.eeworm.com/read/432934/8562321
m sinex.m
function y=sinex(x)
% 计算衰减曲线及其包络线数组
y=exp(-x/3).*sin(3*x);
www.eeworm.com/read/432570/8591916
m lt8_3_1.m
%例8.3.1多总体的均值和方差估计值距离计算
G1=[10 9 3
8 7 1
8 4 4
2 8 0];
G2=[6 2 7
1 4 5
2 5 4
3 1 4];
G3=[4 1 10
1 2 6
1 0 1
www.eeworm.com/read/429757/8791005
m distance.m
function d = distance(inputcities)
%计算输入城市的距离解决旅行商问题。
d = 0;
for n = 1 : length(inputcities)
if n == length(inputcities)
d = d + norm(inputcities(:,n) - inputcities(:,1));
else