Construction of Matrices
1. Identity Matrix: Construct an identity matrix of size 4.
IdentityMatrixConstruction[n_] := IdentityMatrix[n]
IdentityMatrixConstruction[4]
Output:
{{1, 0, 0, 0},
{0, 1, 0, 0},
{0, 0, 1, 0},
{0, 0, 0, 1}}
2. Diagonal Matrix
Construct a diagonal matrix with diagonal elements {1, 2, 3, 4}.
DiagonalMatrixConstruction[diagonalElements_List] := DiagonalMatrix[diagonalElements]
DiagonalMatrixConstruction[{1, 2, 3, 4}]
Output:
{{1, 0, 0, 0},
{0, 2, 0, 0},
{0, 0, 3, 0},
{0, 0, 0, 4}}
3. Random Matrix
Generate a 3×4 matrix of random integers between 0 and 10.
RandomMatrixConstruction[n_, m_] := RandomInteger[{0, 10}, {n, m}]
RandomMatrixConstruction[3, 4]
Example Output:
{{3, 8, 1, 7},
{9, 0, 5, 4},
{6, 2, 10, 8}}
4. Zero Matrix
Create a zero matrix of size 3×3.
ZeroMatrixConstruction[n_, m_] := ConstantArray[0, {n, m}]
ZeroMatrixConstruction[3, 3]
Output:
{{0, 0, 0},
{0, 0, 0},
{0, 0, 0}}
5. Upper Triangular Matrix
Generate an upper triangular matrix from the given matrix.
UpperTriangularMatrixConstruction[mat_List] := UpperTriangularize[mat]
UpperTriangularMatrixConstruction[{{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}]
Output:
{{1, 2, 3},
{0, 5, 6},
{0, 0, 9}}
6. Lower Triangular Matrix
Generate a lower triangular matrix from the given matrix.
LowerTriangularMatrixConstruction[mat_List] := LowerTriangularize[mat]
LowerTriangularMatrixConstruction[{{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}]
Output:
{{1, 0, 0},
{4, 5, 0},
{7, 8, 9}}
7. Symmetric Matrix
Generate a symmetric matrix from the given matrix by averaging it with its transpose.
SymmetricMatrixConstruction[mat_List] := (mat + Transpose[mat])/2
SymmetricMatrixConstruction[{{1, 2}, {3, 4}}]
Output:
{{1, 2.5},
{2.5, 4}}
8. Block Matrix
Create a block matrix from submatrices.
BlockMatrixConstruction[A_, B_, C_, D_] := ArrayFlatten[{{A, B}, {C, D}}]
BlockMatrixConstruction[{{1, 2}, {3, 4}}, {{5, 6}}, {{7, 8}}, {{9}}]
Output:
{{1, 2, 5, 6},
{3, 4, 5, 6},
{7, 8, 9, 9}}
9. Toeplitz Matrix
Generate a Toeplitz matrix from the first row and first column.
ToeplitzMatrixConstruction[firstRow_List, firstCol_List] := ToeplitzMatrix[firstRow, firstCol]
ToeplitzMatrixConstruction[{1, 2, 3}, {1, 4, 5}]
Output:
{{1, 2, 3},
{4, 1, 2},
{5, 4, 1}}
10. Hilbert Matrix
Generate a 3×3 Hilbert matrix.
HilbertMatrixConstruction[n_] := Table[1/(i + j – 1), {i, n}, {j, n}]
HilbertMatrixConstruction[3]
Output:
{{1, 1/2, 1/3},
{1/2, 1/3, 1/4},
{1/3, 1/4, 1/5}}
I enjoy foregathering useful information , this post has got me even more info! .
Hello would you mind letting me know which webhost you’re utilizing? I’ve loaded your blog in 3 different internet browsers and I must say this blog loads a lot quicker then most. Can you recommend a good hosting provider at a honest price? Kudos, I appreciate it!
I was very pleased to seek out this net-site.I wanted to thanks to your time for this excellent learn!! I undoubtedly enjoying every little bit of it and I’ve you bookmarked to take a look at new stuff you blog post.
I am not certain the place you are getting your info, however great topic. I needs to spend a while finding out more or figuring out more. Thank you for great info I used to be looking for this information for my mission.
Does your blog have a contact page? I’m having trouble locating it but, I’d like to send you an e-mail. I’ve got some suggestions for your blog you might be interested in hearing. Either way, great blog and I look forward to seeing it improve over time.
I have been exploring for a bit for any high quality articles or weblog posts on this kind of area . Exploring in Yahoo I finally stumbled upon this site. Studying this information So i am satisfied to convey that I have a very good uncanny feeling I found out exactly what I needed. I so much unquestionably will make sure to do not disregard this website and give it a look on a relentless basis.
whoah this blog is excellent i really like reading your articles. Keep up the good paintings! You already know, many persons are looking around for this information, you can help them greatly.
I have been exploring for a little for any high-quality articles or blog posts in this sort of house . Exploring in Yahoo I eventually stumbled upon this web site. Studying this info So i am satisfied to show that I’ve a very excellent uncanny feeling I discovered just what I needed. I such a lot unquestionably will make certain to don’t omit this site and provides it a glance on a relentless basis.
Heya i am for the first time here. I came across this board and I find It truly useful & it helped me out much. I hope to give something back and aid others like you aided me.