代码搜索:Multiplication
找到约 1,176 项符合「Multiplication」的源代码
代码结果 1,176
www.eeworm.com/read/104625/15688578
cpp matopr.cpp
//Matrix Operations
/**************************************************************/
/*Programmed by : Vivek Patel**********************************/
/*For Bugs Free feel to contact************
www.eeworm.com/read/104625/15688580
bak matopr.bak
//Matrix Operations
#include
#include
#include
#include "e:\vivek\MCA_SEM2\DFS\Array\Matrix\matrix.cpp"
void main()
{
int choice;
matrix obj;
whi
www.eeworm.com/read/191613/8426232
cpp ex1107.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Example 11.7 on page 260
// Overloading the == operator
#include
using namespace std
www.eeworm.com/read/191613/8426541
cpp ex1106.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Example 11.6 on page 260
// Overloading the *= operator
#include
using namespace std
www.eeworm.com/read/191613/8426741
cpp ex1105.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Example 11.5 on page 259
// Testing the Ratio class assignment and multiplication operators
#inc
www.eeworm.com/read/287770/8670301
m times.m
function c = times(a,b)
% overloading of operator .*
% $Id: times.m 3 2004-02-04 12:57:04Z mairas $
if isa(a,'spectrum') & isa(b,'spectrum') & a.frequency==b.frequency
c = spectrum(a.s .* b.s,a.f
www.eeworm.com/read/287770/8670324
m mtimes.m
function c = mtimes(a,b)
% overloading of operator *
% $Id: mtimes.m 3 2004-02-04 12:57:04Z mairas $
if isa(a,'spectrum') & isa(b,'spectrum')
error('Matrix multiplication of two spectra not suppo
www.eeworm.com/read/287770/8670476
m times.m
function c = times(a,b)
% overloading of operator .*
% $Id: times.m 3 2004-02-04 12:57:04Z mairas $
if isa(a,'signal') & isa(b,'signal') & a.time==b.time
c = signal(a.s .* b.s,a.time);
elseif isa
www.eeworm.com/read/379733/9179941
m gtimes.m
function y=gtimes(x1,x2)
%GTIMES Generalized array multiplication.
% C = GTIMES(A,B) denotes element-by-element multiplication.
% The dimensions of the two operands are compared and singleton
%