Difference between revisions of "Manuals/calci/MATRIXWITH"
Jump to navigation
Jump to search
(Created page with "<div style="font-size:30px">'''MATRIXWITH (Size,Properties,Seed,GivenMatrix) '''</div><br/> *<math>Size </math> is the order of the matrix. *<math>Properties</math> is any typ...") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 9: | Line 9: | ||
*In <math>MATRIXWITH (Size,Properties,Seed,GivenMatrix)</math>, <math>Size</math> is the order of the matrix. | *In <math>MATRIXWITH (Size,Properties,Seed,GivenMatrix)</math>, <math>Size</math> is the order of the matrix. | ||
*<math>Properties</math> is the type of the matrix. | *<math>Properties</math> is the type of the matrix. | ||
− | *< | + | *<math>Seed</math> is the maximum limit of the matrix numbers. |
*<math>GivenMatrix</math> is any matrix without satisfies the given properties. | *<math>GivenMatrix</math> is any matrix without satisfies the given properties. | ||
*Here this function will display more types of matrix with in the given seed value. | *Here this function will display more types of matrix with in the given seed value. | ||
Line 23: | Line 23: | ||
==Examples== | ==Examples== | ||
+ | 1. MATRIXWITH(3,"POSITIVE",119) | ||
+ | {| class="wikitable" | ||
+ | |- | ||
+ | | 91.92203927339416 || 113.70685216876332 || 98.46838945896954 | ||
+ | |- | ||
+ | | 27.573411175160505 || 110.55159130996103 || 2.8722976353782315 | ||
+ | |- | ||
+ | | 39.21735835362318 || 102.06216316379523 || 50.69435258518497 | ||
+ | |} | ||
+ | 2. MATRIXWITH(6,"NEGATIVE:INTEGER",-876) | ||
+ | {| class="wikitable" | ||
+ | |- | ||
+ | | -747 || -712 || -582 || -134 || -65 || -136 | ||
+ | |- | ||
+ | | -612 || -721 || -99 || -403 || -104 || -418 | ||
+ | |- | ||
+ | | -525 || -381 || -453 || -259 || -132 || -410 | ||
+ | |- | ||
+ | | -419 || -772 || -76 || -697 || -366 || -707 | ||
+ | |- | ||
+ | | -398 || -264 || -851 || -815 || -241 || -291 | ||
+ | |- | ||
+ | | -22 || -548 || -630 || -570 || -661 || -280 | ||
+ | |} | ||
+ | 3. MATRIXWITH(2,"INTEGER",76,[[2.98,265.54],[654.23,876.005]]) | ||
+ | {| class="wikitable" | ||
+ | |- | ||
+ | | 2 || 265 | ||
+ | |- | ||
+ | |654 || 876 | ||
+ | |} | ||
+ | |||
+ | |||
+ | ==Related Videos== | ||
+ | |||
+ | {{#ev:youtube|v=4lAyqscuTc8&t=18s|280|center|Types of a Matrix}} | ||
+ | |||
==See Also== | ==See Also== |
Latest revision as of 11:55, 25 April 2019
MATRIXWITH (Size,Properties,Seed,GivenMatrix)
- is the order of the matrix.
- is any type of the matrix.
- maximum limit of the matrix entries.
- is any matrix.
Description
- This function shows the different types of matrix with given properties and order.
- In , is the order of the matrix.
- is the type of the matrix.
- is the maximum limit of the matrix numbers.
- is any matrix without satisfies the given properties.
- Here this function will display more types of matrix with in the given seed value.
- Suppose we want to get a positive matrix with the limit number 7 and the given matrix are having negative numbers.
- Then the negative numbers also convert in to positive numbers.
- Types of the matrix are given below:
1.Positive (Decimals) 2.Negative (Decimals) 3.Positive:Integer 4.Negative:Integer 5.Zero 6.Integer
Examples
1. MATRIXWITH(3,"POSITIVE",119)
91.92203927339416 | 113.70685216876332 | 98.46838945896954 |
27.573411175160505 | 110.55159130996103 | 2.8722976353782315 |
39.21735835362318 | 102.06216316379523 | 50.69435258518497 |
2. MATRIXWITH(6,"NEGATIVE:INTEGER",-876)
-747 | -712 | -582 | -134 | -65 | -136 |
-612 | -721 | -99 | -403 | -104 | -418 |
-525 | -381 | -453 | -259 | -132 | -410 |
-419 | -772 | -76 | -697 | -366 | -707 |
-398 | -264 | -851 | -815 | -241 | -291 |
-22 | -548 | -630 | -570 | -661 | -280 |
3. MATRIXWITH(2,"INTEGER",76,[[2.98,265.54],[654.23,876.005]])
2 | 265 |
654 | 876 |
Related Videos