tzeg6@T+ f,c>o⌻wRW/ ‹KgMzPny\F7nXoāKJg EB? Cez>^^$/fЁ1. ?c6ir;*{4N;@a-ɉ53j`?<:A0׶,)ՈGsB =- lN i|E2ZyCFaj^{\ye,JFsQ讋Z$>Vfm‡uzND5f BBEm:r.۟v1h!\+(E _"Il̚TZeyZw FGd A$Bq񏛩F ϰC2Ď;}4h9҃j1~co$v27#7ύ֕0x^3/#_:Ҧv- ["$ k|B]RW8Q,cz4L4e 'ݲ%/@{'I_N U̒% l\1Bted/A|#4/]];OǛ)̙oDY#|qub 6.]Y1 Y/ʟ(9h\І+2F{Gug>#.~.Krh D2Vh(2\)d8+VZB]RW8Q,cz4L4e 2=3ވІqW[=?aB]RW8Q,cz4L4e aU Y$.q[StR9'(TMk?*N(=coָ7($3+4W\mbU6 dܠUxJ b?eQA9ǩtShck=<1I F &m-郃A"M$41HL`H$־HxnR6<\7JĨ}`݈K 74\ 5WCG샻F}L`IE{us<KW!:da\[3/ڡ  V(ˡŮxܧю> ʕeY3-h9 |z>H:h"rduh)6J7YoK >;+W/YB.7%ab?&M] ӝEl\ !*ZgUd*Į&rkKeB8Ӻ.1b$FW+QˏЌ(:͟ԟQ .rUje96Go pkVGg}u+cx!ٲ'm .(5-p}D {XáS8KIKq+ ~^k fF7%'Bs*o3Tث8nn&,`\fQ΍Dd[ 9aH6y.@' +Q| B?}GLR^W>L}ñ \ ~.(9>R!8_̀KcSI)?:>qm>Zi^!1Ă%Nf/'aV? =Q ҆,,v$go]KxV!KkU|fq^Vg}'ADo* ~X<?$U?4;%) &$$ꇇwe6mmp:4Slu.<4hh#N!1y 3LX91Tnz@G2}I'7Ez^ +n;X޸ a8Ûʔ}upⶖE%w7_Q$ߟe0-"0]$SIsƣȯsL!#T̰"#=& >]8F'EX3m}MRES&#Jz,2Ŝ=g0 tJn ^q9/3f-+L}3B;ҫȖ9V>B)x%Bf!h|#U/@}~dDs])H\-کuF'FG,i$݈ nLfBmr kYwLBU C,%_~ ik7JoFP>eNC]u1ݕbY`!gmTI1AYd?AOtצYQx9P12v)zz4 jԛu!Fy S_M'zv6Uz44< -Ԇ&*M%ћϒH.X;:STE~0GJİ KQ>.Ww>̓hmj) 6|@.Ez n1띴pv*Š;ȫi6IKwd{ygXV1n&f), S6eźU7KŎ_VYu]pIc`;Mr'NiHG}/xQ瑄&XL׎g:tٛ/d8mGKImo6VzEeQ-)[^R*Bذ1"ٌ'?1Sp1t3ZcJT003lLle<`CΜ~ 0YGYe3PW8rоmZ^ }nH,|hrn-folder-open"> JAMA For an m-by-n matrix A with m >= n, the singular value decomposition is an m-by-n orthogonal matrix U, an n-by-n diagonal matrix S, and an n-by-n orthogonal matrix V so that A = U*S*V'
  •  JAMA Pythagorean Theorem: a = 3 b = 4 r = sqrt(square(a) + square(b)) r = 5 r = sqrt(a^2 + b^2) without under/overflow
  •  PHPExcel
  • PHPExcel_Calculation_Logical

    category PHPExcel
    package PHPExcel_Calculation
    copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)

     Methods

    FALSE

    FALSE() : boolean
    Static

    Returns the boolean FALSE.

    Excel Function: =FALSE()

    access public
    category Logical Functions

    Returns

    booleanFalse

    IFERROR

    IFERROR(mixed $testValue, mixed $errorpart) : mixed
    Static

    Excel Function: =IFERROR(testValue,errorpart)

    access public
    category Logical Functions

    Parameters

    $testValue

    mixed

    Value to check, is also the value returned when no error

    $errorpart

    mixed

    Value to return when testValue is an error condition

    Returns

    mixedThe value of errorpart or testValue determined by error condition

    LOGICAL_AND

    LOGICAL_AND() : boolean
    Static

    Returns boolean TRUE if all its arguments are TRUE; returns FALSE if one or more argument is FALSE.

    Excel Function: =AND(logical1[,logical2[, ...]])

    The arguments must evaluate to logical values such as TRUE or FALSE, or the arguments must be arrays
        or references that contain logical values.
    
    Boolean arguments are treated as True or False as appropriate
    Integer or floating point arguments are treated as True, except for 0 or 0.0 which are False
    If any argument value is a string, or a Null, the function returns a #VALUE! error, unless the string holds
        the value TRUE or FALSE, in which case it is evaluated as the corresponding boolean value
    
    access public
    category Logical Functions

    Returns

    booleanThe logical AND of the arguments.

    LOGICAL_OR

    LOGICAL_OR() : boolean
    Static

    Returns boolean TRUE if any argument is TRUE; returns FALSE if all arguments are FALSE.

    Excel Function: =OR(logical1[,logical2[, ...]])

    The arguments must evaluate to logical values such as TRUE or FALSE, or the arguments must be arrays
        or references that contain logical values.
    
    Boolean arguments are treated as True or False as appropriate
    Integer or floating point arguments are treated as True, except for 0 or 0.0 which are False
    If any argument value is a string, or a Null, the function returns a #VALUE! error, unless the string holds
        the value TRUE or FALSE, in which case it is evaluated as the corresponding boolean value
    
    access public
    category Logical Functions

    Returns

    booleanThe logical OR of the arguments.

    NOT

    NOT(mixed $logical) : boolean
    Static

    Returns the boolean inverse of the argument.

    Excel Function: =NOT(logical)

    The argument must evaluate to a logical value such as TRUE or FALSE
    
    Boolean arguments are treated as True or False as appropriate
    Integer or floating point arguments are treated as True, except for 0 or 0.0 which are False
    If any argument value is a string, or a Null, the function returns a #VALUE! error, unless the string holds
        the value TRUE or FALSE, in which case it is evaluated as the corresponding boolean value
    
    access public
    category Logical Functions

    Parameters

    $logical

    mixed

    A value or expression that can be evaluated to TRUE or FALSE

    Returns

    booleanThe boolean inverse of the argument.

    STATEMENT_IF

    STATEMENT_IF(mixed $condition, mixed $returnIfTrue, mixed $returnIfFalse) : mixed
    Static

    Returns one value if a condition you specify evaluates to TRUE and another value if it evaluates to FALSE.

    Excel Function: =IF(condition[,returnIfTrue[,returnIfFalse]])

    Condition is any value or expression that can be evaluated to TRUE or FALSE.
        For example, A10=100 is a logical expression; if the value in cell A10 is equal to 100,
        the expression evaluates to TRUE. Otherwise, the expression evaluates to FALSE.
        This argument can use any comparison calculation operator.
    ReturnIfTrue is the value that is returned if condition evaluates to TRUE.
        For example, if this argument is the text string "Within budget" and the condition argument evaluates to TRUE,
        then the IF function returns the text "Within budget"
        If condition is TRUE and ReturnIfTrue is blank, this argument returns 0 (zero). To display the word TRUE, use
        the logical value TRUE for this argument.
        ReturnIfTrue can be another formula.
    ReturnIfFalse is the value that is returned if condition evaluates to FALSE.
        For example, if this argument is the text string "Over budget" and the condition argument evaluates to FALSE,
        then the IF function returns the text "Over budget".
        If condition is FALSE and ReturnIfFalse is omitted, then the logical value FALSE is returned.
        If condition is FALSE and ReturnIfFalse is blank, then the value 0 (zero) is returned.
        ReturnIfFalse can be another formula.
    
    access public
    category Logical Functions

    Parameters

    $condition

    mixed

    Condition to evaluate

    $returnIfTrue

    mixed

    Value to return when condition is true

    $returnIfFalse

    mixed

    Optional value to return when condition is false

    Returns

    mixedThe value of returnIfTrue or returnIfFalse determined by condition

    TRUE

    TRUE() : boolean
    Static

    Returns the boolean TRUE.

    Excel Function: =TRUE()

    access public
    category Logical Functions

    Returns

    booleanTrue