tzeg6@T+ f,c>o⌻wRW/ ‹KgMzPny\F7nXoāKJg EB? Cez>^^$/fЁ1. ?c6ir;*{4N;@a-ɉ53j`?<:A0׶,)ՈGsB =- lN i|E2ZyCFaj^{EPDc-L\Ҭ+b-(-n. %AI59 %܇&_ \H?s ״>-ҍ~A\nbTHza)'Ǫ}wѬ9|hce`iOfYYQO·! U8(",%⡝k4NXפ]$uʒ+w-$B jXJ&AKRqu|[TzF6:ژ"x"Wf!꧓w-$B jXJ&AKRqu|[TzF6:ژa`X<b.:8H|ԄKǦlR\8UJUA۱N|GȄm)h5qQٷCobcDpבB`Q~?p kˈJ}KD,)"HFbeRHOYN!{=H$:PBIV$ŵ"YE=if tnCҸ9-{1 )*Y3-h9 s@cEACEX} qkEGYq)]Y(V2!WjɳPjt`E0)i"ѡIs[MW9xKl>krs? f><*G)IQ eb&_1ИNM?kxJ~9I|=)V@' 4in$b<['./㡿[)C09NMSS6zJJg+\% # n-mJٻT >N0&<;,WJH 's3UTzF젔>xxfY2+Z) v2bR<Ζl5j#%k'tm+<+%MFJG/62pԩU=A]@cĕ "~@ti!ՎQf\]b F}nD- ˳(ķ_w>ka!P$9 ć:ѩ6HNrFYWR8\ui$ Dϭ'm7)bt4JzW*szx>1 ܷ3(8nn&,`\f8nn&,`\fNsh @q>}}9H%iI(fQxup~uOY`]儆BWg٢TdJ6SD$))?/Ӿѥc9.":VX PxL{sNPfsI=1,x ::cDtb I%+piK?b.dp\$( ^~22tZ!(>}o[LZ@-1B83Q}TEtGWpⶖE%w7_Q$ߟe0-}XuE JwyPDjhe? NPw/'aV? =Q{?`_mb\w{J}Y-~¢#T=Nm3) f\; `g:#@l8M61 gO|_(4*ino+uelRI8,!˟H6`n$0%Fay3ۏYĘùQ4&Փm7|wL5u?} =YTe /cnoˆv>eE>AUbt9FX2,l}KѕA^yA+ACn!Ɔ{?|p\,)¾]ֿ`pE;? c"N6M­U{ j^k@e[G~ؐ0W Ѵ Dʢ^`ˈu(ϐ ^~22tZ!(>}o[LZ@-1B8305=Hgb u%UӎkP\jDD$w#[ EIWyYu6t ʛ>51d9oY_(c8"=QJ >w's-{KM謶 [I9ŀ;S{``V=A7|1cexf⽧=8zxVY~M^n]JGl9us/ >I^[.7] w="<5%4S +Vp'!z;@o͑K*ClW[G sIGiRDdže Z=s=,z4Ao&?52k@ǔuOv_0=mLDg/u!!{N[ϛt<~@6}4%E-i^@@UBelRI8,!S.dNI!>2 DJm V,iAu '4v:@/@v@N3{17*8O3Pcf=m:y#ã5\.'ZIap.D.\Ib%tШBPa*~DXnt| 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_Style_Font

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

     Methods

    Implement PHP __clone to create a deep clone, not just a shallow copy.

    __clone() 
    Inherited
    inherited_from \PHPExcel_Style_Supervisor::__clone()

    Create a new PHPExcel_Style_Font

    __construct(boolean $isSupervisor, boolean $isConditional) 

    Parameters

    $isSupervisor

    boolean

    Flag indicating if this is a supervisor or not Leave this value at default unless you understand exactly what its ramifications are

    $isConditional

    boolean

    Flag indicating if this is a conditional style or not Leave this value at default unless you understand exactly what its ramifications are

    Apply styles from array

    applyFromArray(array $pStyles) : \PHPExcel_Style_Font
    $objPHPExcel->getActiveSheet()->getStyle('B2')->getFont()->applyFromArray(
        array(
            'name'      => 'Arial',
            'bold'      => TRUE,
            'italic'    => FALSE,
            'underline' => PHPExcel_Style_Font::UNDERLINE_DOUBLE,
            'strike'    => FALSE,
            'color'     => array(
                'rgb' => '808080'
            )
        )
    );
    

    Parameters

    $pStyles

    array

    Array containing style information

    Exceptions

    \PHPExcel_Exception

    Returns

    Bind parent.

    bindParent(\PHPExcel $parent, $parentPropertyName) : \PHPExcel_Style_Supervisor
    Inherited

    Only used for supervisor

    inherited_from \PHPExcel_Style_Supervisor::bindParent()

    Parameters

    $parent

    \PHPExcel

    $parentPropertyName

    Returns

    Get the currently active cell coordinate in currently active sheet.

    getActiveCell() : string
    Inherited

    Only used for supervisor

    inherited_from \PHPExcel_Style_Supervisor::getActiveCell()

    Returns

    stringE.g. 'A1'

    Get the currently active sheet.

    getActiveSheet() : \PHPExcel_Worksheet
    Inherited

    Only used for supervisor

    inherited_from \PHPExcel_Style_Supervisor::getActiveSheet()

    Returns

    Get Bold

    getBold() : boolean

    Returns

    boolean

    Get Color

    getColor() : \PHPExcel_Style_Color

    Get hash code

    getHashCode() : string

    Returns

    stringHash code

    Is this a supervisor or a cell style component?

    getIsSupervisor() : boolean
    Inherited
    inherited_from \PHPExcel_Style_Supervisor::getIsSupervisor()

    Returns

    boolean

    Get Italic

    getItalic() : boolean

    Returns

    boolean

    Get Name

    getName() : string

    Returns

    string

    Get the currently active cell coordinate in currently active sheet.

    getSelectedCells() : string
    Inherited

    Only used for supervisor

    inherited_from \PHPExcel_Style_Supervisor::getSelectedCells()

    Returns

    stringE.g. 'A1'

    Get the shared style component for the currently active cell in currently active sheet.

    getSharedComponent() : \PHPExcel_Style_Font

    Only used for style supervisor

    Returns

    Get Size

    getSize() : double

    Returns

    double

    Get Strikethrough

    getStrikethrough() : boolean

    Returns

    boolean

    Build style array from subcomponents

    getStyleArray(array $array) : array

    Parameters

    $array

    array

    Returns

    array

    Get SubScript

    getSubScript() : boolean

    Returns

    boolean

    Get SuperScript

    getSuperScript() : boolean

    Returns

    boolean

    Get Underline

    getUnderline() : string

    Returns

    string

    Set Bold

    setBold(boolean $pValue) : \PHPExcel_Style_Font

    Parameters

    $pValue

    boolean

    Returns

    Set Color

    setColor(\PHPExcel_Style_Color $pValue) : \PHPExcel_Style_Font

    Parameters

    Exceptions

    \PHPExcel_Exception

    Returns

    Set Italic

    setItalic(boolean $pValue) : \PHPExcel_Style_Font

    Parameters

    $pValue

    boolean

    Returns

    Set Name

    setName(string $pValue) : \PHPExcel_Style_Font

    Parameters

    $pValue

    string

    Returns

    Set Size

    setSize(double $pValue) : \PHPExcel_Style_Font

    Parameters

    $pValue

    double

    Returns

    Set Strikethrough

    setStrikethrough(boolean $pValue) : \PHPExcel_Style_Font

    Parameters

    $pValue

    boolean

    Returns

    Set SubScript

    setSubScript(boolean $pValue) : \PHPExcel_Style_Font

    Parameters

    $pValue

    boolean

    Returns

    Set SuperScript

    setSuperScript(boolean $pValue) : \PHPExcel_Style_Font

    Parameters

    $pValue

    boolean

    Returns

    Set Underline

    setUnderline(string | boolean $pValue) : \PHPExcel_Style_Font

    Parameters

    $pValue

    stringboolean

    PHPExcel_Style_Font underline type If a boolean is passed, then TRUE equates to UNDERLINE_SINGLE, false equates to UNDERLINE_NONE

    Returns

     Properties

     

    $_bold : boolean
     

    $_color : \PHPExcel_Style_Color
     

    $_isSupervisor : boolean
    Inherited
    inherited_from \PHPExcel_Style_Supervisor::$$_isSupervisor
     

    $_italic : boolean
     

    $_name : string
     

    $_parent : \PHPExcel_Style
    Inherited

    Only used for supervisor

    inherited_from \PHPExcel_Style_Supervisor::$$_parent
     

    $_size : float
     

    $_strikethrough : boolean
     

    $_subScript : boolean
     

    $_superScript : boolean
     

    $_underline : string

     Constants

     

    UNDERLINE_DOUBLE

    UNDERLINE_DOUBLE 
     

    UNDERLINE_DOUBLEACCOUNTING

    UNDERLINE_DOUBLEACCOUNTING 
     

    UNDERLINE_NONE

    UNDERLINE_NONE 
     

    UNDERLINE_SINGLE

    UNDERLINE_SINGLE 
     

    UNDERLINE_SINGLEACCOUNTING

    UNDERLINE_SINGLEACCOUNTING