Sie sind auf Seite 1von 14

BASIC COMMANDS

COMPLEX
IMABS
IMAGINARY
IMARGUMENT
IMCONJUGATE
IMCOS
IMCOSH
IMCOT
IMCSC
IMCSCH
IMDIV
IMEXP
IMLN
IMLOG10
IMLOG2
IMPOWER
IMPRODUCT
IMREAL
IMSEC
IMSECH
IMSIN
IMSINH
IMSQRT
IMSUB
IMSUM
IMTAN
Converts user-supplied real and imaginary coefficients into a complex number
Returns the absolute value (the modulus) of a complex number
Returns the imaginary coefficient of a complex number
Returns the argument Θ (an angle expressed in radians) of a complex number
Returns the complex conjugate of a complex number
Returns the cosine of a complex number
Returns the hyperbolic cosine of a complex number (New in Excel 2013)
Returns the cotangent of a complex number (New in Excel 2013)
Returns the cosecant of a complex number (New in Excel 2013)
Returns the hyperbolic cosecant of a complex number (New in Excel 2013)
Returns the quotient of two supplied complex numbers
Returns the exponential of a complex number
Returns the natural logarithm of a complex number
Returns the base-10 logarithm of a complex number
Returns the base-2 logarithm of a complex number
Calculates a complex number raised to a supplied power
Returns the product of up to 255 supplied complex numbers
Returns the real coefficient of a complex number
Returns the secant of a complex number (New in Excel 2013)
Returns the hyperbolic secant of a complex number (New in Excel 2013)
Returns the sine of a complex number
Returns the hyperbolic sine of a complex number (New in Excel 2013)
Returns the square root of a complex number
Subtracts two complex numbers
Calculates the sum of two complex numbers
Returns the tangent of a complex number (New in Excel 2013)
EXAMPLES
FORMULA(=)
Complex number(Rectangular) COMPLEX
Absolute value/Magnitude IMABS
Angle(Radian) IMARGUMENT
Angle(Degree) DEGREES
Real IMREAL
Imaginary IMAGINARY
ADDITION IMSUM
SUBTRACTION IMSUB
MULTIPLICATION IMPRODUCT
DIVISION IMDIV
CONJUGATE IMCONJUGATE
SQUARE ROOT IMSQRT
SINE IMSIN
COSINE IMCOS
TANGENT IMTAN
SECANT IMSEC
COSECANT IMCSC
COTANGENT IMCOT
HYPERBOLIC SINE IMSINH
HYPERBOLIC COSINE IMCOSH
HYPERBOLIC SECANT IMSECH
HYBERBOLIC COSECANT IMCSC
EXPONENTIAL IMEXP
NATURAL LOGARITHM IMLN
LOG BASE 10 IMLOG10
LOG BASE 2 IMLOG2
POWER IMPOWER
2
3
5
RESULT
2+3j 3+4j
3.6055512755 5
0.9827937232 0.927295218
56.309932474 53.1301023542
2 3
3 4
5+7j
-1-j
-6+17j
0.72+0.04j
2-3j 3-4j
1.67414922803554+0.895977476129838j 2+j
9.15449914691143-4.16890695996656j 3.85373803791938-27.0168132580039j
-4.18962569096881-9.10922789375534j -27.0349456030742-3.85115333481178j
-0.00376402564150425+1.00323862735361j -0.000187346204629478+0.999355987381473j
-0.0416749644111443+0.0906111371962376j -0.0362534969158689+0.00516434460775318j
0.0904732097532074+0.0412009862885741j 0.0051744731840194+0.036275889628626j
-0.00373971037633696-0.996757796569358j -0.000187587737983659-1.00064439247156j
-3.59056458998578+0.53092108624852j -6.548120040911-7.61923172032141j
-3.72454550491532+0.511822569987385j -6.58066304055116-7.58155274274654j
-0.263512975158389-0.0362116365587685j -0.065294027857947+0.0752249603027732j
-0.27254866146294-0.0403005788568915j -0.0648774713706355+0.0754898329158637j
-7.3151100949011+1.0427436562359j -13.1287830814622-15.200784463068j
1.28247467873077+0.982793723247329j 1.6094379124341+0.927295218001612j
0.556971676153418+0.426821890855467j 0.698970004336019+0.402719196273373j
1.85021985907055+1.41787163074572j 2.32192809488736+1.33780421245098j

-5+12j -7+24j
-46+9.00000000000001j -117+44j
122-597j -237.000000000002-3116j
BASICS
FORMULA (=) SYMBOL
ADDITION SUM +
1 2
2 4
3 5
ANSWER 6 11

SUBTRACTION -
-5
-5

ANSWER
MULTIPLICATION *
66

ANSWER
DIVISION /
986758
19786
ANSWER 49 49.87153

IF ELSE STATEMENT
A B RESULT
-1 2 2
99 -76 99

FORMAT(DECIMAL,NUMBER,FRACTION…ETC)
0.76470588
MATRICES
ADDITION OF MATRICES
Same DIMENSION
Row x Column

MATRIX A
1 2 3
4 5 6
7 8 9

MANUALLY 3
12
8

SUBTRACTION OF MATRICES
Same DIMENSION
Row x Column

MATRIX A
1 4 3
4 -5 6
7 -8 9

MANUALLY

NOTE: MULTIPLICATION FIRST

DETERMINANT
MDETERM MATRIX A

ANSWER
DET A 36
DET B

MATRIX INVERSE
MINVERSE MATRIX A
1 3 5
7 9 11
-2 -4 -6

Err:502 Err:502 Err:502


Err:502 Err:502 Err:502
Err:502 Err:502 Err:502

ANSWER
A^-1
MATRIX B
2 4 6
8 0 2
1 5 3
CTRL+SHIIFT+ENTER
A+B A+B
6 9 3 6 9
5 8 12 5 8
13 12 8 13 12

MATRIX B
2 4 6
8 0 2
1 5 3
CTRL+SHIIFT+ENTER
A-B A-B
-1 0 -3 -1 0 -3
-4 -5 4 -4 -5 4
6 -13 6 6 -13 6

MATRIX B

MATRIX B
1 2 3 4
5 6 7 8
9 -1 -2 -3
-4 -5 -6 -7
2.252E+15

B^-1
MULTIPLICATION OF MATRICES
Number of Columns (A) = Number of Rows (B)

A B AxB
RxC RxC Result
(3 x 2) X (2 x 2) = 3x2

SAMPLE 1 MATRIX A MATRIX B


1 2 2 -2
3 4 -5 10
5 6

MMULT MANUALLY
Ctrl + Shift + Enter
AxB AxB
-8 18
-14 34
-20 50

SAMPLE 2 MATRIX A MATRIX B


2 2 3 2 4 6
4 5 6 X 8 0 2
7 8 9 1 5 3

CHECKING 23 23 25
MMULT 54 46 52
87 73 85
MANUALLY
AXB
23 23 25
54 46 52
87 73 85
COMPLEX NUMBERS
FORMULA(=)
Complex number(Rectangular) COMPLEX
Absolute value/Magnitude (r) IMABS
Angle(Radian) IMARGUMENT
Angle(Degree) DEGREES
Real IMREAL
Imaginary IMAGINARY
ADDITION IMSUM
SUBTRACTION IMSUB
MULTIPLICATION IMPRODUCT
DIVISION IMDIV
CONJUGATE IMCONJUGATE
SQUARE ROOT IMSQRT
SINE IMSIN
COSINE IMCOS
TANGENT IMTAN
SECANT IMSEC
COSECANT IMCSC
COTANGENT IMCOT
HYPERBOLIC SINE IMSINH
HYPERBOLIC COSINE IMCOSH
HYPERBOLIC SECANT IMSECH
HYBERBOLIC COSECANT IMCSC
EXPONENTIAL IMEXP
NATURAL LOGARITHM IMLN
LOG BASE 10 IMLOG10
LOG BASE 2 IMLOG2
POWER IMPOWER
2
3
5
a+-jb
RESULT
3+4j 2-5j
5 5.3851648071
0.927295218 -1.1902899497
53.1301023542 -68.1985905136
3 2
4 -5
5-j
1+9j
26-7j
-0.482758620689655+0.793103448275862j
3-4j 2+5j
2+j 1.9216093264676-1.30099285300391j
3.85373803791938-27.0168132580039j 67.4789152384559+30.8794313435882j
-27.0349456030742-3.85115333481178j -30.8822353189167+67.4727884405875j

-13.1287830814622-15.200784463068j
1.6094379124341+0.927295218001612j
90
0.893997

Das könnte Ihnen auch gefallen