代码搜索:Multiplication
找到约 1,176 项符合「Multiplication」的源代码
代码结果 1,176
www.eeworm.com/read/458488/7296097
m contents.m
% NMM Toolbox: routines for eigenvalue computation
%
% eigSort Eigenvalue/vectors sorted in ascending or descending order
% iterMult Iterated multiplication of a vector by a matrix: u = A*A
www.eeworm.com/read/455737/7367360
csv matrix.csv
"Function","GJ_step","(Mat, [Typ], [IntValue]) ","Gauss-Jordan algorithm step by step","Linear Algebra","Gauss-Jordan algorithm step by step",,"matrix","matrix.hlp","21"
"Function","M_ABS","(v) ","No
www.eeworm.com/read/452695/7436287
c ex4_04.c
/*Exercise 4.1 Generate a multiplication table */
#include
int main(void)
{
int width = 0; /* Box width */
int height = 0; /* Box
www.eeworm.com/read/441876/7663322
cpp mainconv.cpp
////////////////////////////////////////////////////////////////////////////////
///
/// @file mainConv.cpp
///
/// @author Marwan et Mehdi
///
//////////////////////////////////////////////////
www.eeworm.com/read/441871/7663570
cpp maindpr.cpp
////////////////////////////////////////////////////////////////////////////////
///
/// @file mainDPR.cpp
///
/// @author Marwan et Mehdi
///
///////////////////////////////////////////////////
www.eeworm.com/read/436895/7759273
m arithmetic.m
%Question No:1
%Write a MATLAB function which performs the four arithmetic operations
%between two images.
function arithmetic(x,y)
a=imread(x);
b=imread(y);
a=im2double(a);
b=im2double(b);
www.eeworm.com/read/196832/8055351
m mdprod.m
function Z=mdprod(X,Y,dim)
% function Z=mdprod(X,Y,dim)
%
% equivalent of rdiv (row multiplication: Z = X * Y row-wise)
% for multidimensional arrays
% note: these routines are NOT fully tested
%
% e