Java Doc for Float64Matrix.java in  » Science » jscience-4.3.1 » org » jscience » mathematics » vector » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Science » jscience 4.3.1 » org.jscience.mathematics.vector 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.jscience.mathematics.vector.Float64Matrix

Float64Matrix
final public class Float64Matrix extends Matrix (Code)

This class represents an optimized Matrix matrix implementation for Float64 64 bits floating-point numbers.

Instances of this class can be created from Float64Vector , either as rows or columns if the matrix is transposed. For example:[code] Float64Vector column0 = Float64Vector.valueOf(...); Float64Vector column1 = Float64Vector.valueOf(...); Float64Matrix M = Float64Matrix.valueOf(column0, column1).transpose(); [/code]


author:
   Jean-Marie Dautelle
version:
   3.3, January 2, 2007


Field Summary
 int_n
     Holds the number of columns n.
final  FastTable<Float64Vector>_rows
     Holds this matrix rows (or columns when transposed).
 boolean_transposed
     Indicates if this matrix is transposed (the rows are then the columns).


Method Summary
public  Float64Matrixadjoint()
    
public  Float64cofactor(int i, int j)
    
public  Float64Matrixcopy()
    
public  Float64determinant()
    
public  Float64get(int i, int j)
    
public  Float64VectorgetColumn(int j)
    
public  Float64VectorgetDiagonal()
    
public  intgetNumberOfColumns()
    
public  intgetNumberOfRows()
    
public  Float64VectorgetRow(int i)
    
public  Float64Matrixinverse()
    
public  Float64Matrixminus(Matrix<Float64> that)
    
static  Float64MatrixnewInstance(int n, boolean transposed)
    
public  Float64Matrixopposite()
    
public  Float64Matrixplus(Matrix<Float64> that)
    
public  Float64Matrixtensor(Matrix<Float64> that)
    
public  Float64Matrixtimes(Float64 k)
    
public  Float64Vectortimes(Vector<Float64> v)
    
public  Float64Matrixtimes(Matrix<Float64> that)
    
public  Float64Matrixtranspose()
    
public static  Float64MatrixvalueOf(double[][] values)
     Returns a dense matrix from a 2-dimensional array of double values.
public static  Float64MatrixvalueOf(Float64Vector... rows)
     Returns a complex matrix holding the specified row vectors (column vectors if Float64Matrix.transpose transposed ).
Parameters:
  rows - the row vectors.
public static  Float64MatrixvalueOf(List<Float64Vector> rows)
     Returns a complex matrix holding the row vectors from the specified collection (column vectors if Float64Matrix.transpose transposed ).
Parameters:
  rows - the list of row vectors.
public static  Float64MatrixvalueOf(Matrix<Float64> that)
     Returns a complex matrix equivalent to the specified matrix.
Parameters:
  that - the matrix to convert.
public  Float64Vectorvectorization()
    

Field Detail
_n
int _n(Code)
Holds the number of columns n.



_rows
final FastTable<Float64Vector> _rows(Code)
Holds this matrix rows (or columns when transposed).



_transposed
boolean _transposed(Code)
Indicates if this matrix is transposed (the rows are then the columns).





Method Detail
adjoint
public Float64Matrix adjoint()(Code)



cofactor
public Float64 cofactor(int i, int j)(Code)



copy
public Float64Matrix copy()(Code)



determinant
public Float64 determinant()(Code)



get
public Float64 get(int i, int j)(Code)



getColumn
public Float64Vector getColumn(int j)(Code)



getDiagonal
public Float64Vector getDiagonal()(Code)



getNumberOfColumns
public int getNumberOfColumns()(Code)



getNumberOfRows
public int getNumberOfRows()(Code)



getRow
public Float64Vector getRow(int i)(Code)



inverse
public Float64Matrix inverse()(Code)



minus
public Float64Matrix minus(Matrix<Float64> that)(Code)



newInstance
static Float64Matrix newInstance(int n, boolean transposed)(Code)



opposite
public Float64Matrix opposite()(Code)



plus
public Float64Matrix plus(Matrix<Float64> that)(Code)



tensor
public Float64Matrix tensor(Matrix<Float64> that)(Code)



times
public Float64Matrix times(Float64 k)(Code)



times
public Float64Vector times(Vector<Float64> v)(Code)



times
public Float64Matrix times(Matrix<Float64> that)(Code)



transpose
public Float64Matrix transpose()(Code)



valueOf
public static Float64Matrix valueOf(double[][] values)(Code)
Returns a dense matrix from a 2-dimensional array of double values. The first dimension being the row and the second being the column.
Parameters:
  values - the array of double values. the matrix having the specified elements.
throws:
  DimensionException - if rows have different length.
See Also:   Float64Vector
See Also:   



valueOf
public static Float64Matrix valueOf(Float64Vector... rows)(Code)
Returns a complex matrix holding the specified row vectors (column vectors if Float64Matrix.transpose transposed ).
Parameters:
  rows - the row vectors. the matrix having the specified rows.
throws:
  DimensionException - if the rows do not have the same dimension.



valueOf
public static Float64Matrix valueOf(List<Float64Vector> rows)(Code)
Returns a complex matrix holding the row vectors from the specified collection (column vectors if Float64Matrix.transpose transposed ).
Parameters:
  rows - the list of row vectors. the matrix having the specified rows.
throws:
  DimensionException - if the rows do not have the same dimension.



valueOf
public static Float64Matrix valueOf(Matrix<Float64> that)(Code)
Returns a complex matrix equivalent to the specified matrix.
Parameters:
  that - the matrix to convert. that or a complex matrix holding the same elementsas the specified matrix.



vectorization
public Float64Vector vectorization()(Code)



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.