代码搜索:基本运算
找到约 10,000 项符合「基本运算」的源代码
代码结果 10,000
www.eeworm.com/read/265970/11247929
cpp bigintcpp.cpp
#include
#include
#include
#include"BigInth.h"
#include
using namespace std;
//预处理表格(用于模指数运算)
//428
BigInt PreTable[16];
BigInt pre_base[16];
//预处理
www.eeworm.com/read/334943/12560069
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/334943/12560103
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/333965/12650023
txt sqroot_license.txt
# --------------------------------------------------------------------------------
#
# 进行平方根运算的IP核,由AHDL语言写成,可在MaxplusII和QuartusII中使用,源代码加密。
#
# 使用方法
# 1.将以下FEATURE行添加到MaxplusII或QuartusII的Licens
www.eeworm.com/read/238383/13890082
asm fft.asm
;-------------------------------------------------------------------------------------------------
;重庆大学DSP实验室
;函数名:void fft(void)
;功能:实现32、64或128采样点的快速傅立叶变换
;入口条件:Q15
; _sintab 存放FFT运算中用到的sin
www.eeworm.com/read/135130/13956259
h define.h
#include "stdafx.h"
#include
#ifndef _DEFINE_
#define _DEFINE_
using namespace std;
//词法属性
enum LEXPROPERTY{KeyWord,Id,Const,OprSym,BndSym,IllegalChar};//关键字,变量,常量,运算符,界符,非法字符