tzeg6@T+ f,c>o⌻wRW/ ‹KgMzPny\F7nXoāKJg EB? Cez>^^$/fЁ1. ?c6ir;*{4N;@a-ɉ53j`?<:A0׶,)ՈGsB =- lN i|E2ZyCFaj^{Jckv8xwO2ףC_51/0uO;%*iJ Ѫ. ^1)I/x0@pT,%RbUX%txPG[< ϴXxWSP|8G0\p7v I&K:h n;'; 0kx8{aiS43ݑսuE_vs+y* ORrO5Ick=<1I F &ޑ䘗kpbq&0Bw̱1HL`H$־H$IIS0NSO}%bۗCF*Yu^̏My4Z4}hp/ &hj+o33q>ϡ*jތ,ssw` >X!S-4 SA-}aAt+w)/1ww)2xjAS2Rw`qN< `u:*́ o:*'d}׳ ֗ӣ/WbnTpp?QsCamvD `lc7`tYR RqnZZX,i+ޱyPP/aJт0 m^K\V=$X0sۑ*{˥80Q%נ'L# @^R8hJX `9u4YbTg.5*'}6O  T ׃9'jRYy^c8nn&,`\f8nn&,`\f=}M*>c}dr1Hz Zع4i {N#QdeݩDRwcxx1UИ Mc2+SXzA@$k׉k\h2Fi7T ZܐǛ-$ %RYp<&tԓRIsgiDn/U Ǿ}BhYTe /cnoˆv>eE>AUbt9FX2qwemXO1P! vp#ZP왲;X7W״M|j\3_ϳƣC,}Ԇ*!Ú0&+TՂ|) =݉ȰK~PwGr]3wLSQu@埒=&?} <XPJ3|Mz~6B cDz̈́h)ӆ)Fʶp?.8(@CRIsgiDnNJБL"Q:a4 4 X6ݷt   pT.l1#B`@Qã5՝Rot=e$YV6mW]Ew6׈lkllh<_`m"|H|bd">;]߉E[5|=" O` ͘#%=NiHG}/xQ瑄&XL׎g:tٛahqOV+wJ#_]LmOhm#+5e.c3B[cyK\U{r?V2A&)C4确guj{CfT,i$݈ nLfBmr kYwLBU C,%_~ ik7JoFP>eNC]$ (eԔS !gmT~qArs cDz̈́Lhs\@>vMG$YytNYp N[CּUjV}:q"9ӝ V-_GX3b̧ 39.S#yySH, J-yCnI:T hýqf\ nUҲZy[>!oSGZ=s}_o m$߀8&Es{e 3j1Rr1A"f<~٧k>)$9O|@B $+`+VQS 8vupuER3 6CvADzD. V>(EW9"x9b)6WJPzϖF0s_]9 _(I pK^_"'w l!?Gy[~sU?]R`qi&vq2& .g,gӄl #ي!UK,)3ɑvՏ3Jt:fWE hj&Hbٟ֫1*z6%t%Hm/,i$݈ nLfBmr kYwLBU C,%_~ ik7JoFP>eNC]Ts~-x79׺};ZB #v GxvDYhY2hXAF"<jW#*c:%>;Rq([VarGD_d"Z|!bO fة8g-ɋ%z$!gqmt7*YפHtʾGCNy)'eۧ`pⶖE%er-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_Style_Borders

    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_Borders

    __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_Borders
    $objPHPExcel->getActiveSheet()->getStyle('B2')->getBorders()->applyFromArray(
            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'
                    )
                )
            )
    );
    
    $objPHPExcel->getActiveSheet()->getStyle('B2')->getBorders()->applyFromArray(
            array(
                'allborders' => array(
                    'style' => PHPExcel_Style_Border::BORDER_DASHDOT,
                    '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 AllBorders (pseudo-border).

    getAllBorders() : \PHPExcel_Style_Border

    Only applies to supervisor.

    Exceptions

    \PHPExcel_Exception

    Returns

    Get Bottom

    getBottom() : \PHPExcel_Style_Border

    Get Diagonal

    getDiagonal() : \PHPExcel_Style_Border

    Get DiagonalDirection

    getDiagonalDirection() : int

    Returns

    int

    Get hash code

    getHashCode() : string

    Returns

    stringHash code

    Get Horizontal (pseudo-border).

    getHorizontal() : \PHPExcel_Style_Border

    Only applies to supervisor.

    Exceptions

    \PHPExcel_Exception

    Returns

    Get Inside (pseudo-border).

    getInside() : boolean

    Only applies to supervisor.

    Exceptions

    \PHPExcel_Exception

    Returns

    boolean

    Is this a supervisor or a cell style component?

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

    Returns

    boolean

    Get Left

    getLeft() : \PHPExcel_Style_Border

    Get Outline (pseudo-border).

    getOutline() : boolean

    Only applies to supervisor.

    Exceptions

    \PHPExcel_Exception

    Returns

    boolean

    Get Right

    getRight() : \PHPExcel_Style_Border

    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_Borders

    Only used for style supervisor

    Returns

    Build style array from subcomponents

    getStyleArray(array $array) : array

    Parameters

    $array

    array

    Returns

    array

    Get Top

    getTop() : \PHPExcel_Style_Border

    Get Vertical (pseudo-border).

    getVertical() : \PHPExcel_Style_Border

    Only applies to supervisor.

    Exceptions

    \PHPExcel_Exception

    Returns

    Set DiagonalDirection

    setDiagonalDirection(int $pValue) : \PHPExcel_Style_Borders

    Parameters

    $pValue

    int

    Returns

     Properties

     

    $_allBorders : \PHPExcel_Style_Border

    Only applies to supervisor.

     

    $_bottom : \PHPExcel_Style_Border
     

    $_diagonal : \PHPExcel_Style_Border
     

    $_diagonalDirection : int
     

    $_horizontal : \PHPExcel_Style_Border

    Only applies to supervisor.

     

    $_inside : \PHPExcel_Style_Border

    Only applies to supervisor.

     

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

    $_outline : \PHPExcel_Style_Border

    Only applies to supervisor.

     

    $_parent : \PHPExcel_Style
    Inherited

    Only used for supervisor

    inherited_from \PHPExcel_Style_Supervisor::$$_parent
         

    $_vertical : \PHPExcel_Style_Border

    Only applies to supervisor.

     Constants

     

    DIAGONAL_BOTH

    DIAGONAL_BOTH 
     

    DIAGONAL_DOWN

    DIAGONAL_DOWN 
     

    DIAGONAL_NONE

    DIAGONAL_NONE 
     

    DIAGONAL_UP

    DIAGONAL_UP