Done: CheckSpan, Check Linearly Independent, All in Comsubspace.m, Rows operations (Dswaprow, Dmulrow, Daddrow), RREF, Solve Unique Solutions.
Not Done: Ploting stuff; Determinant stuff (CramRule, FindDet); MLX Files: Span + Linear Trans + Subspace and Plot, EigenValue and EigenVector.
Classification: Matrix outputs text (good), Matrix outputs Matrix (good), Matrix outputs plots (hard one, do later)
- Download the
linear_app_package_v7.mlappinstall
by clickingdownload raw file
button on the top right and double click to run.
-
Download the Latest MATLAB Version:
- Download the latest
.mlapp
file from the./mlapp_design
folder.
- Download the latest
-
Open the App:
- Double-click the downloaded
.mlapp
file to open it in MATLAB. - The app will open in the MATLAB App Designer environment.
- Double-click the downloaded
- Input Matrix Dimensions:
- Enter the number of rows in the "Rows" field.
- Enter the number of columns in the "Cols" field.
- Click the
GenerateMatrix
button to create a zero matrix of the specified dimensions. This will populate the matrix display area with editable cells.
- Enter Matrix Elements:
- Manually enter the elements of the matrix in the editable cells under "Column 1", "Column 2", etc.
- Invalid input will be appeared as NaN, and therefore the button cannot be used.
- If applicable, enter the elements of the vector in the
Vector b
column.
- Swap Rows:
- Enter the indices of the rows to swap in the "RowSwap1" and "RowSwap2" fields.
- Click the
SwapRow
button. - The results will be appeared in the original matrix above.
- Multiply Row:
- Enter the index of the row to multiply in the "RowToMultiply" field.
- Enter the multiplication factor in the "MultiplyFactor" field.
- Click the
MultiplyRow
button. - The results will be appeared in the original matrix above
- Add Multiple of Source Row to Destination Row:
- Enter the index of the source row in the "SourceRow" field.
- Enter the index of the destination row in the "DestinationRow" field.
- Enter the multiplication factor in the "MultiplyFactor" field.
- Click the
AddMultipleOfSourceRowToDestinationRow
button. - The results will be appeared in the original matrix above
-
Reduced Row Echelon Form (RREF):
- Click the
RREF
button to transform the matrix to its reduced row echelon form.
- Click the
-
Solve Augmented Matrix:
- Enter the elements of the vector in the
Vector b
column. - Click the
SolveAugementedMatrix
button to solve the system of linear equations represented by the augmented matrix. - This can only solve for unique solution, updates are needed for free varibables and infinite solutions.
- Enter the elements of the vector in the
-
Check Span:
- Enter the elements of the vector in the
Vector b
column. - Click the
CheckSpan
button to check ifVector b
is in the span of the vector space.
- Enter the elements of the vector in the
-
Check Linearly Independent:
- Click the
CheckLinearlyIndependent
button to check if the vectors are linearly independent.
- Click the
-
Find Row Space Basis:
- Click the
FindRowSpaceBasis
button to find the basis of the row space of the matrix.
- Click the
-
Find Column Space Basis:
- Click the
FindColSpaceBasis
button to find the basis of the column space of the matrix.
- Click the
-
Find Null Space Basis:
- Click the
FindNullSpaceBasis
button to find the basis of the null space of the matrix.
- Click the
-
Find Rank:
- Click the
FindRank
button to find the rank of the matrix.
- Click the
-
Find Nullity:
- Click the
FindNullity
button to find the nullity of the matrix.
- Click the
-
Plot Column Vectors:
PlotColVectors
can only plot two 3D vectors after clicking onFindColSpaceBasis
.- Click the
PlotColVectors
button to plot the column vectors of the matrix. - The plotting result will be appeared in the plotting region as a plane in R3.
-
Plot Single Vector:
- Enter a 3D vector in
Vector b
Column. - Click the
PlotSingleVector
button to plot the vectorVector b
. - If the
Vector b
is in the span, it will appeared as a orange vector on the span plane. Otherwise, it will be appeared as a blue vector.
- Enter a 3D vector in
3. Enter a vector in Vector b
and click PlotSingleVector
to plot the Vector b
in R3, in this example, the Vector b
is not in the span so it appeared as a blue vector, as also checked by clicking on the CheckSpan
button.
4. Enter a vector in Vector b
and click PlotSingleVector
to plot the Vector b
in R3, in this example, the Vector b
is in the span so it appeared as a orange vector, as also checked by clicking on the CheckSpan
button.
- The results of the operations will appear in the "Results" section at the bottom of the app.
- If the result is a statement, it will appear in the "Results" box.
- If the result is a matrix, it will appear in the matrix box under the "Results" section.
- The graphical representation (if applicable) will be shown in the plot area labeled "Title".
- Ensure that the matrix and vector dimensions are correctly specified before performing any operations.
- Some operations may require additional inputs or conditions; refer to the specific button descriptions for details.
By following these instructions, you can utilize the MATLAB app to perform various linear algebra operations and visualize the results.