modified: diffout.py
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / dp
blob6418745be17c2855d567fb0db9ac9d5e728ceb47
1 NAME
2     dp - dot product of two vectors
4 SYNOPSIS
5     dp(x, y)
7 TYPES
8     x, y        1-dimensional matrices of the same size
10     return      depends on the nature of the elements of x and y
12 DESCRIPTION
13     Compute the dot product of two 1-dimensional matrices.
15     Let:
17         x = {x0, x1, ... xn}
18         y = {y0, y1, ... yn}
20     Then dp(x,y) returns the result of the calculation:
22         x0*y0 + x1*y1 + ... + xn*yn
24 EXAMPLE
25     ; mat x[3] = {2,3,4}
26     ; mat y[1:3] = {3,4,5}
27     ; print dp(x,y)
28     38
30 LIMITS
31     none
33 LINK LIBRARY
34     VALUE matdot(MATRIX *x, MATRIX *y)
36 SEE ALSO
37     cp
39 ## Copyright (C) 1999  Landon Curt Noll
41 ## Calc is open software; you can redistribute it and/or modify it under
42 ## the terms of the version 2.1 of the GNU Lesser General Public License
43 ## as published by the Free Software Foundation.
45 ## Calc is distributed in the hope that it will be useful, but WITHOUT
46 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
47 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
48 ## Public License for more details.
50 ## A copy of version 2.1 of the GNU Lesser General Public License is
51 ## distributed with calc under the filename COPYING-LGPL.  You should have
52 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
53 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
55 ## @(#) $Revision: 30.1 $
56 ## @(#) $Id: dp,v 30.1 2007/03/16 11:10:42 chongo Exp $
57 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/dp,v $
59 ## Under source code control:   1995/10/05 04:52:26
60 ## File existed as early as:    1995
62 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
63 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/