~ubuntu-branches/ubuntu/trusty/mpeg4ip/trusty

« back to all changes in this revision

Viewing changes to common/video/iso-mpeg4/include/svd.h

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello
  • Date: 2008-01-12 15:59:56 UTC
  • Revision ID: james.westby@ubuntu.com-20080112155956-1vznw5njidvrh649
Tags: upstream-1.6dfsg
ImportĀ upstreamĀ versionĀ 1.6dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*************************************************************************
 
2
 
 
3
This software module was originally developed by 
 
4
 
 
5
        Ming-Chieh Lee (mingcl@microsoft.com), Microsoft Corporation
 
6
        Wei-ge Chen (wchen@microsoft.com), Microsoft Corporation
 
7
        Bruce Lin (blin@microsoft.com), Microsoft Corporation
 
8
        Chuang Gu (chuanggu@microsoft.com), Microsoft Corporation
 
9
        (date: March, 1996)
 
10
 
 
11
in the course of development of the MPEG-4 Video (ISO/IEC 14496-2). 
 
12
This software module is an implementation of a part of one or more MPEG-4 Video tools 
 
13
as specified by the MPEG-4 Video. 
 
14
ISO/IEC gives users of the MPEG-4 Video free license to this software module or modifications 
 
15
thereof for use in hardware or software products claiming conformance to the MPEG-4 Video. 
 
16
Those intending to use this software module in hardware or software products are advised that its use may infringe existing patents. 
 
17
The original developer of this software module and his/her company, 
 
18
the subsequent editors and their companies, 
 
19
and ISO/IEC have no liability for use of this software module or modifications thereof in an implementation. 
 
20
Copyright is not released for non MPEG-4 Video conforming products. 
 
21
Microsoft retains full right to use the code for his/her own purpose, 
 
22
assign or donate the code to a third party and to inhibit third parties from using the code for non <MPEG standard> conforming products. 
 
23
This copyright notice must be included in all copies or derivative works. 
 
24
 
 
25
Copyright (c) 1996, 1997.
 
26
 
 
27
 
 
28
Module Name:
 
29
 
 
30
        svd.hpp
 
31
 
 
32
Abstract:
 
33
 
 
34
        Solution of Linear Algebraic Equations 
 
35
 
 
36
Revision History:
 
37
 
 
38
*************************************************************************/
 
39
 
 
40
#ifndef __SVD_H_
 
41
#define __SVD_H_
 
42
 
 
43
// Solving the linear square problem by SVD. Added by Chuang Gu 12/12/96
 
44
Double* linearLS (Double** Ain, Double* b, UInt n_row, UInt n_col);
 
45
 
 
46
#endif //_SVD_H_