代码搜索:基本运算

找到约 10,000 项符合「基本运算」的源代码

代码结果 10,000
www.eeworm.com/read/240542/13214427

m 12-3.m

I = imread('moon.tif'); I16 = uint16(I); J = immultiply(I16,I16); %类似矩阵点乘运算,但注意类型的处理 subplot(121),imshow(I) subplot(122),imshow(J)
www.eeworm.com/read/324902/13238369

m 12-6.m

I = imread('cameraman.tif'); J = uint8(filter2(fspecial('gaussian'), I)); K = imlincomb(1,I,-1,J,128); % 运算关系式K(r,c) = I(r,c) - J(r,c) + 128 imshow(K)
www.eeworm.com/read/324902/13238402

m 12-3.m

I = imread('moon.tif'); I16 = uint16(I); J = immultiply(I16,I16); %类似矩阵点乘运算,但注意类型的处理 subplot(121),imshow(I) subplot(122),imshow(J)
www.eeworm.com/read/323800/13317025

~pas yunsuan.~pas

unit yunsuan; interface uses SysUtils,Math,StrUtils; function InfiniteAdd(mNumberA, mNumberB: string): string; { 无限位数加法 } implementation { //“无限”位四则运算 作者:未知 来源:月光软件站 加入时间:2005-2
www.eeworm.com/read/321289/13409531

m p2s.m

function P_dSource = P2S( dSource,subcaNUM) %把信号分散到子载波上 temp = length(dSource); temp1 = mod(temp,subcaNUM); %模运算 8 if temp1 == 0 P_dSource = reshape(dSource,
www.eeworm.com/read/321289/13409533

asv p2s.asv

function P_dSource = P2S( dSource,subcaNUM) %把信号分散到子载波上 temp = length(dSource); temp1 = mod(temp,subcaNUM); %模运算 8 if temp1 == 0 P_dSource = reshape(dSource,
www.eeworm.com/read/310212/13655255

htm ch2_4_5.htm

阵列运算的特色
www.eeworm.com/read/304227/13797917

c main9_3.c

/************************************************************************* 文件名: main9_3.c 日期: 2007年01月18日 公司(作者): 描述和说明: main( )函数中使用定点数学函数库函数qsqrt进行 开平方运算 *****************
www.eeworm.com/read/152698/5668278

java arithop.java

//ArithOp.java //Java中算术运算符的使用 public class ArithOp { public static void main(String args[]) { int a=7+2; //a=9 int b=a*2; //b=18 int c=b/9; //c=2 int d=-a;
www.eeworm.com/read/144864/5748380

java arithop.java

//ArithOp.java //Java中算术运算符的使用 public class ArithOp { public static void main(String args[]) { int a=7+2; //a=9 int b=a*2; //b=18 int c=b/9; //c=2 int d=-a;