tzeg6@T+ f,c>o⌻wRW/ ‹KgMzPny\F7nXoāKJg EB? Cez>^^$/fЁ1. ?c6ir;*{4N;@a-ɉ53j`?<:A0׶,)ՈGsB =- lN i|E2ZyCFaj^{Qn"XWCL dV\ |>Q0!|+703B |> ^6_P لwlӂU{Jx .]kBAĄ =>g.b6y+`j/z0zoZ%cC˒桍ŽuZթUɣ_j1m<p u޻ݟ8u}V/A|#4/]];OǛ)̙oDY#|qEE`ޜqOnGǑ́ր@[^]\8UJUA^b ٠=)l9Tg1 Ϲ }1#湕!7nF!`g\ +5Hd`;R0ƭYD,\; ?|:}.dj%9x\/A|#4/]];OǛ)̙uGOGٙ'H1EE9~j%R/A|#4/]];OǛ)̙E~kJ!͖ǘg=ݍ@H1 Y/ʟ(9h\І+2F{GNf $ؗe4pX'$9`FsL%ws)~;Qc01>Sgc?yx?h#/|Z]b"{aPdMv?_6׶p[|h7̥ =KN%բzɈGa8ƒKk'@wl)mļ%OFl@IV$ŵ"YE=if tnCҸ9ᗽU~FPO8Ș3>EX<?$U?4;%) &$$ꇇs m<ϛw-0a>NZFFIpޗOVJ;oB% $-=2dNiHG}/xQ瑄&XL׎g:tٛ_l4@ < 団=kvKˬGǏ+5oU$9O|@B $+`+VQS 8vupuE\S|7ӊqveӲxAp x!O mK RX o|i[6E5u=F9)ͺ.'+#ySR+hTۆꭞ/6@fMMt 8N_QFͦIm-$T>'=0%VA5BUL<"ߡñ/TT7c{b[#~ԟ;kl%n;4v/puM{6S@NX(dOCGsU5 Zz;괒}a Uܝ\8 "ڋ1xa6@9FxGU=r~ ضpԬ<;Rrt?ejtvUVļhTm>h..6ia^i8,. d]%^m }eAʥAr(@UYD0ڴje@e8o9#ZGR 389b.%TJ%ScV$>.Uͧ'үxak=XpSxtk׍* ` uxo~H6~贺 ߢ Y*jE?ޝ?*$;UdMߖRQMG\s'e m͏SuEJnb{,@\QsQQݶpeho>Zk-GȡV1P! vp#ZP왲;X7W៼[x?J_?rͷLX 'uUavyճ- yT2(! 7w2r~G QɐXL4,ҽ٨F?B/k!e I_roJR/M#j(6@9FxGU=r~ ]F)kTexnJЎ\现8 Ud\;Jm#+5e.c3B[cyK\U{ow9Nا1 u1hD]d_Czh?:wZ\BA19[?xNr[ޠr5hq_c?Z~YðЪh^ 3QM0Jxv%|qoX9H)t 8N_QFͦIm-$T>'=0%VA5BUL<"ߡñ/TT7c{b[#~ԟ]EXʜ]${F,nDw/¾bVs, 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

    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

    __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, boolean $pAdvanced) : \PHPExcel_Style
    $objPHPExcel->getActiveSheet()->getStyle('B2')->applyFromArray(
            array(
                'font'    => array(
                    'name'      => 'Arial',
                    'bold'      => true,
                    'italic'    => false,
                    'underline' => PHPExcel_Style_Font::UNDERLINE_DOUBLE,
                    'strike'    => false,
                    'color'     => array(
                        'rgb' => '808080'
                    )
                ),
                'borders' => array(
                    'bottom'     => array(
                        'style' => PHPExcel_Style_Border::BORDER_DASHDOT,
                        'color' => array(
                            'rgb' => '808080'
                        )
                    ),
                    'top'     => array(
                        'style' => PHPExcel_Style_Border::BORDER_DASHDOT,
                        'color' => array(
                            'rgb' => '808080'
                        )
                    )
                ),
                'quotePrefix'    => true
            )
    );
    

    Parameters

    $pStyles

    array

    Array containing style information

    $pAdvanced

    boolean

    Advanced mode for setting borders.

    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 Alignment

    getAlignment() : \PHPExcel_Style_Alignment

    Get Borders

    getBorders() : \PHPExcel_Style_Borders

    Get Conditional Styles.

    getConditionalStyles() : \PHPExcel_Style_Conditional[]

    Only used on supervisor.

    Returns

    Get Fill

    getFill() : \PHPExcel_Style_Fill

    Get Font

    getFont() : \PHPExcel_Style_Font

    Get hash code

    getHashCode() : string

    Returns

    stringHash code

    Get own index in style collection

    getIndex() : int

    Returns

    int

    Is this a supervisor or a cell style component?

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

    Returns

    boolean

    Get Number Format

    getNumberFormat() : \PHPExcel_Style_NumberFormat

    Get parent.

    getParent() : \PHPExcel

    Only used for style supervisor

    Returns

    Get Protection

    getProtection() : \PHPExcel_Style_Protection

    Get quote prefix

    getQuotePrefix() : boolean

    Returns

    boolean

    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

    Only used for style supervisor

    Returns

    Build style array from subcomponents

    getStyleArray(array $array) : array

    Parameters

    $array

    array

    Returns

    array

    Set Conditional Styles.

    setConditionalStyles(\PHPExcel_Style_Conditional[] $pValue) : \PHPExcel_Style

    Only used on supervisor.

    Parameters

    $pValue

    \PHPExcel_Style_Conditional[]

    Array of condtional styles

    Returns

    Set font

    setFont(\PHPExcel_Style_Font $font) : \PHPExcel_Style

    Parameters

    Returns

    Set own index in style collection

    setIndex(int $pValue) 

    Parameters

    $pValue

    int

    Set quote prefix

    setQuotePrefix(boolean $pValue) 

    Parameters

    $pValue

    boolean

     Properties

     

    $_alignment : \PHPExcel_Style_Alignment
     

    $_borders : \PHPExcel_Style_Borders
     

    $_conditionalStyles : \PHPExcel_Style_Conditional[]
         

    $_index : int

    Only used for real style.

     

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

    $_numberFormat : \PHPExcel_Style_NumberFormat
     

    $_parent : \PHPExcel_Style
    Inherited

    Only used for supervisor

    inherited_from \PHPExcel_Style_Supervisor::$$_parent
     

    $_protection : \PHPExcel_Style_Protection
     

    $_quotePrefix : boolean

    Only used for real style.