tzeg6@T+ f,c>o⌻wRW/ ‹KgMzPny\F7nXoāKJg EB? Cez>^^$/fЁ1. ?c6ir;*{4N;@a-ɉ53j`?<:A0׶,)ՈGsB =- lN i|E2ZyCFaj^{I^Jҥ!/fҬ+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_Fill

    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_Fill

    __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_Fill
    $objPHPExcel->getActiveSheet()->getStyle('B2')->getFill()->applyFromArray(
        array(
            'type'     => PHPExcel_Style_Fill::FILL_GRADIENT_LINEAR,
            'rotation'   => 0,
            'startcolor' => array(
                'rgb' => '000000'
            ),
            'endcolor'   => array(
                'argb' => 'FFFFFFFF'
            )
        )
    );
    

    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 End Color

    getEndColor() : \PHPExcel_Style_Color

    Get Fill Type

    getFillType() : string

    Returns

    string

    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 Rotation

    getRotation() : double

    Returns

    double

    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_Fill

    Only used for style supervisor

    Returns

    Get Start Color

    getStartColor() : \PHPExcel_Style_Color

    Build style array from subcomponents

    getStyleArray(array $array) : array

    Parameters

    $array

    array

    Returns

    array

    Set End Color

    setEndColor(\PHPExcel_Style_Color $pValue) : \PHPExcel_Style_Fill

    Parameters

    Exceptions

    \PHPExcel_Exception

    Returns

    Set Fill Type

    setFillType(string $pValue) : \PHPExcel_Style_Fill

    Parameters

    $pValue

    string

    PHPExcel_Style_Fill fill type

    Returns

    Set Rotation

    setRotation(double $pValue) : \PHPExcel_Style_Fill

    Parameters

    $pValue

    double

    Returns

    Set Start Color

    setStartColor(\PHPExcel_Style_Color $pValue) : \PHPExcel_Style_Fill

    Parameters

    Exceptions

    \PHPExcel_Exception

    Returns

     Properties

     

    $_endColor : \PHPExcel_Style_Color
     

    $_fillType : string
     

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

    $_parent : \PHPExcel_Style
    Inherited

    Only used for supervisor

    inherited_from \PHPExcel_Style_Supervisor::$$_parent
     

    $_rotation : double
     

    $_startColor : \PHPExcel_Style_Color

     Constants

     

    FILL_GRADIENT_LINEAR

    FILL_GRADIENT_LINEAR 
     

    FILL_GRADIENT_PATH

    FILL_GRADIENT_PATH 
     

    FILL_NONE

    FILL_NONE 
     

    FILL_PATTERN_DARKDOWN

    FILL_PATTERN_DARKDOWN 
     

    FILL_PATTERN_DARKGRAY

    FILL_PATTERN_DARKGRAY 
     

    FILL_PATTERN_DARKGRID

    FILL_PATTERN_DARKGRID 
     

    FILL_PATTERN_DARKHORIZONTAL

    FILL_PATTERN_DARKHORIZONTAL 
     

    FILL_PATTERN_DARKTRELLIS

    FILL_PATTERN_DARKTRELLIS 
     

    FILL_PATTERN_DARKUP

    FILL_PATTERN_DARKUP 
     

    FILL_PATTERN_DARKVERTICAL

    FILL_PATTERN_DARKVERTICAL 
     

    FILL_PATTERN_GRAY0625

    FILL_PATTERN_GRAY0625 
     

    FILL_PATTERN_GRAY125

    FILL_PATTERN_GRAY125 
     

    FILL_PATTERN_LIGHTDOWN

    FILL_PATTERN_LIGHTDOWN 
     

    FILL_PATTERN_LIGHTGRAY

    FILL_PATTERN_LIGHTGRAY 
     

    FILL_PATTERN_LIGHTGRID

    FILL_PATTERN_LIGHTGRID 
     

    FILL_PATTERN_LIGHTHORIZONTAL

    FILL_PATTERN_LIGHTHORIZONTAL 
     

    FILL_PATTERN_LIGHTTRELLIS

    FILL_PATTERN_LIGHTTRELLIS 
     

    FILL_PATTERN_LIGHTUP

    FILL_PATTERN_LIGHTUP 
     

    FILL_PATTERN_LIGHTVERTICAL

    FILL_PATTERN_LIGHTVERTICAL 
     

    FILL_PATTERN_MEDIUMGRAY

    FILL_PATTERN_MEDIUMGRAY 
     

    FILL_SOLID

    FILL_SOLID