代码搜索:基本运算
找到约 10,000 项符合「基本运算」的源代码
代码结果 10,000
www.eeworm.com/read/249868/12465019
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/132227/14103599
h define.h
#include "stdafx.h"
#include
#ifndef _DEFINE_
#define _DEFINE_
using namespace std;
//词法属性
enum LEXPROPERTY{KeyWord,Id,Const,OprSym,BndSym,IllegalChar};//关键字,变量,常量,运算符,界符,非法字符
www.eeworm.com/read/132098/14110452
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/231681/14223819
txt sqroot_license.txt
# --------------------------------------------------------------------------------
#
# 进行平方根运算的IP核,由AHDL语言写成,可在MaxplusII和QuartusII中使用,源代码加密。
#
# 使用方法
# 1.将以下FEATURE行添加到MaxplusII或QuartusII的Licens
www.eeworm.com/read/127242/14366451
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/127242/14366471
m 12-3.m
I = imread('moon.tif');
I16 = uint16(I);
J = immultiply(I16,I16);
%类似矩阵点乘运算,但注意类型的处理
subplot(121),imshow(I)
subplot(122),imshow(J)