Difference between revisions of "Manuals/calci/HANKEL"

From ZCubes Wiki
Jump to navigation Jump to search
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<div style="font-size:30px">'''MATRIX("HANKEL",order)'''</div><br/>
+
<div style="font-size:25px">'''MATRIX (TypeOfMatrix,DimensionsOfMatrix,SeedValuesToUse,IJFunction,PreParameter,IsItInternalCall)'''</div><br/>
*<math>order</math> is the order of the hankel matrix.
+
*<math>TypeOfMatrix</math> is the type of the matrix.
 +
*<math> DimensionsOfMatrix </math> is the order of the Hankel matrix.
  
 
==Description==
 
==Description==
Line 16: Line 17:
 
\end{bmatrix}</math>.
 
\end{bmatrix}</math>.
 
*A hankel matrix is  also called as catalecticant matrix.
 
*A hankel matrix is  also called as catalecticant matrix.
*Here MATRIX("hankel") is gives the hankel matrix of order 3 with decimal values.
 
 
*A Hankel matrix is an upside-down Toeplitz matrix.
 
*A Hankel matrix is an upside-down Toeplitz matrix.
 
*A matrix whose entries along a parallel to the main anti-diagonal are equal, for each parallel.  
 
*A matrix whose entries along a parallel to the main anti-diagonal are equal, for each parallel.  
Line 22: Line 22:
  
 
==Examples==
 
==Examples==
*1.MATRIX("hankel")
+
*1.MATRIX("hankel") = 0.312783548142761
 +
*2.MATRIX("hankel",3)  
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
Line 31: Line 32:
 
| 0.6076015164144337 || 0.6414852568414062 || 0.9679132911842316  
 
| 0.6076015164144337 || 0.6414852568414062 || 0.9679132911842316  
 
|}
 
|}
*2.MATRIX("hankel",5,1..10)  
+
*3.MATRIX("hankel",5,1..10)  
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
Line 44: Line 45:
 
| 5 || 6 || 7 || 8 ||9
 
| 5 || 6 || 7 || 8 ||9
 
|}
 
|}
*3.MATRIX("hankel",5,-10..0)
+
*4.MATRIX("hankel",5,-10..0)
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
Line 57: Line 58:
 
| -6 || -5 || -4 || -3 || -2
 
| -6 || -5 || -4 || -3 || -2
 
|}
 
|}
*4.MATRIX("hankel",4,["rice","water"])
+
*5.MATRIX("hankel",4,["rice","water"])
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
Line 68: Line 69:
 
| water || rice || water || rice
 
| water || rice || water || rice
 
|}
 
|}
 +
*6. MATRIX("hankel:integer")
 +
 +
-8
 +
 +
*7.MATRIX("hankel:positive integer")
 +
 +
61
 +
 +
*8.MATRIX("hankel:negative integer")
 +
 +
-73
 +
 +
==Related Videos==
 +
 +
{{#ev:youtube|v=4lAyqscuTc8|280|center|Types of Matrices}}
  
 
==See Also==
 
==See Also==
Line 76: Line 92:
  
 
==References==
 
==References==
 +
*[http://en.wikipedia.org/wiki/Hankel_matrix Hankel matrix]
 +
 +
 +
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
 +
*[[ Z3 |  Z3 home ]]

Latest revision as of 04:21, 22 February 2022

MATRIX (TypeOfMatrix,DimensionsOfMatrix,SeedValuesToUse,IJFunction,PreParameter,IsItInternalCall)


  • is the type of the matrix.
  • is the order of the Hankel matrix.

Description

  • This function gives the matrix with the property of hankel matrix.
  • A hankel matrix is a square matrix with constant skew diagonals.
  • If the i,j element of Hankel matrix A is denoted , then we have

.

  • i.e., The form of Hankel matrix is:

.

  • A hankel matrix is also called as catalecticant matrix.
  • A Hankel matrix is an upside-down Toeplitz matrix.
  • A matrix whose entries along a parallel to the main anti-diagonal are equal, for each parallel.
  • Sometimes this type of matrices are also called as orthosymmetric matrices.

Examples

  • 1.MATRIX("hankel") = 0.312783548142761
  • 2.MATRIX("hankel",3)
0.6414852568414062 0.9679132911842316 0.6076015164144337
0.9679132911842316 0.6076015164144337 0.6414852568414062
0.6076015164144337 0.6414852568414062 0.9679132911842316
  • 3.MATRIX("hankel",5,1..10)
1 2 3 4 5
2 3 4 5 6
3 4 5 6 7
4 5 6 7 8
5 6 7 8 9
  • 4.MATRIX("hankel",5,-10..0)
-10 -9 -8 -7 -6
-9 -8 -7 -6 -5
-8 -7 -6 -5 -4
-7 -6 -5 -4 -3
-6 -5 -4 -3 -2
  • 5.MATRIX("hankel",4,["rice","water"])
rice water rice water
water rice water rice
rice water rice water
water rice water rice
  • 6. MATRIX("hankel:integer")

-8

  • 7.MATRIX("hankel:positive integer")

61

  • 8.MATRIX("hankel:negative integer")

-73

Related Videos

Types of Matrices

See Also

References