代码搜索:Multiplication
找到约 1,176 项符合「Multiplication」的源代码
代码结果 1,176
www.eeworm.com/read/255755/12057655
m mtimes.m
%MTIMES Dataset overload of *
%
% C = A*B
%
% This routines handles the dataset multiplication in case A or B is
% a dataset and none of these is a mapping. A or B may be a cell array
% of datasets
www.eeworm.com/read/151476/12207708
hpp sarrayops1.hpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/150905/12248828
m mtimes.m
%MTIMES Dataset overload of *
%
% C = A*B
%
% This routines handles the dataset multiplication in case A or B is
% a dataset and none of these is a mapping. A or B may be a cell array
% of datasets
www.eeworm.com/read/338439/12307337
txt 1197.txt
<mark>Multiplication</mark> Puzzle
题意:
给定一组数字,每次可以删除除了首尾两个数字的任意一个数字,同时得到一个值,这个值等于删除的值与和它相邻的两个数字的乘积,要求得到一种删除数字的方案,使得得到的所有上述值的和最大。
解法:
动态规划题中最典型的矩阵连乘的演化版,方法相同! ...
www.eeworm.com/read/251837/12316737
m times.m
function y = times(a,b)
%TIMES (interval) componentwise multiplication for intervals, a.*b.
%
%b4m - datatype interval Version 1.02 (c) 14.9.1998 Jens Zemke
%
% DESCRIPTION:
% 'tim
www.eeworm.com/read/149739/12353120
m mtimes.m
%MTIMES Dataset overload of *
%
% C = A*B
%
% This routines handles the dataset multiplication in case A or B is
% a dataset and none of these is a mapping. A or B may be a cell array
% of datasets
www.eeworm.com/read/129735/14230373
asm multsub.asm
;MULTSUB.ASM - SUBROUTINE FOR MULTIPLICATION PROGRAM
.TITLE "MULTSUB.ASM" ;MULTIPLY SUBROUTINE
.GLOBAL MULT ;REF/DEF SYMBOL
.TEXT ;ASSEMBLE INTO TE
www.eeworm.com/read/128476/14294802
java fig10_38.java
public class Fig10_38
{
/* START: Fig10_38.txt */
/**
* Standard matrix multiplication.
* Arrays start at 0.
* Assumes a and b are square.
*/
www.eeworm.com/read/128324/14304990
c mvmul.c
void MVmul(
Matrix a,
Vector b,
Vector c,
int m,
int r,
int n)
{
int i,j;
double sum;
if((m>0)&&(n>0)&&(r==n))
www.eeworm.com/read/128324/14305002
c mmmul.c
void MMmul(
Matrix a,
Matrix b,
Matrix c,
int m,
int r,
int s,
int n)
{
int i,j,k;
double sum;
Matrix d;