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

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

     Methods

    Create a new PHPExcel_Writer_CSV

    __construct(\PHPExcel $phpExcel) 

    Parameters

    $phpExcel

    \PHPExcel

    PHPExcel object

    Get delimiter

    getDelimiter() : string

    Returns

    string

    Get disk caching directory

    getDiskCachingDirectory() : string
    Inherited
    inherited_from \PHPExcel_Writer_Abstract::getDiskCachingDirectory()

    Returns

    string

    Get enclosure

    getEnclosure() : string

    Returns

    string

    Get whether the file should be saved with full Excel Compatibility

    getExcelCompatibility() : boolean

    Returns

    boolean

    Write charts in workbook? If this is true, then the Writer will write definitions for any charts that exist in the PHPExcel object.

    getIncludeCharts() : boolean
    Inherited

    If false (the default) it will ignore any charts defined in the PHPExcel object.

    inherited_from \PHPExcel_Writer_Abstract::getIncludeCharts()

    Returns

    boolean

    Get line ending

    getLineEnding() : string

    Returns

    string

    Get Pre-Calculate Formulas flag If this is true (the default), then the writer will recalculate all formulae in a workbook when saving, so that the pre-calculated values are immediately available to MS Excel or other office spreadsheet viewer when opening the file If false, then formulae are not calculated on save.

    getPreCalculateFormulas() : boolean
    Inherited

    This is faster for saving in PHPExcel, but slower when opening the resulting file in MS Excel, because Excel has to recalculate the formulae itself

    inherited_from \PHPExcel_Writer_Abstract::getPreCalculateFormulas()

    Returns

    boolean

    Get sheet index

    getSheetIndex() : int

    Returns

    int

    Get whether BOM should be used

    getUseBOM() : boolean

    Returns

    boolean

    Get use disk caching where possible?

    getUseDiskCaching() : boolean
    Inherited
    inherited_from \PHPExcel_Writer_Abstract::getUseDiskCaching()

    Returns

    boolean

    Save PHPExcel to file

    save(string $pFilename) 

    @param string $pFilename Name of the file to save

    Parameters

    $pFilename

    string

    Exceptions

    \PHPExcel_Writer_Exception

    Set delimiter

    setDelimiter(string $pValue) : \PHPExcel_Writer_CSV

    Parameters

    $pValue

    string

    Delimiter, defaults to ,

    Returns

    Set enclosure

    setEnclosure(string $pValue) : \PHPExcel_Writer_CSV

    Parameters

    $pValue

    string

    Enclosure, defaults to "

    Returns

    Set whether the file should be saved with full Excel Compatibility

    setExcelCompatibility(boolean $pValue) : \PHPExcel_Writer_CSV

    Parameters

    $pValue

    boolean

    Set the file to be written as a fully Excel compatible csv file Note that this overrides other settings such as useBOM, enclosure and delimiter

    Returns

    Set write charts in workbook Set to true, to advise the Writer to include any charts that exist in the PHPExcel object.

    setIncludeCharts(boolean $pValue) : \PHPExcel_Writer_IWriter
    Inherited

    Set to false (the default) to ignore charts.

    inherited_from \PHPExcel_Writer_Abstract::setIncludeCharts()

    Parameters

    $pValue

    boolean

    Returns

    Set line ending

    setLineEnding(string $pValue) : \PHPExcel_Writer_CSV

    Parameters

    $pValue

    string

    Line ending, defaults to OS line ending (PHP_EOL)

    Returns

    Set Pre-Calculate Formulas Set to true (the default) to advise the Writer to calculate all formulae on save Set to false to prevent precalculation of formulae on save.

    setPreCalculateFormulas(boolean $pValue) : \PHPExcel_Writer_IWriter
    Inherited
    inherited_from \PHPExcel_Writer_Abstract::setPreCalculateFormulas()

    Parameters

    $pValue

    boolean

    Pre-Calculate Formulas?

    Returns

    Set sheet index

    setSheetIndex(int $pValue) : \PHPExcel_Writer_CSV

    Parameters

    $pValue

    int

    Sheet index

    Returns

    Set whether BOM should be used

    setUseBOM(boolean $pValue) : \PHPExcel_Writer_CSV

    Parameters

    $pValue

    boolean

    Use UTF-8 byte-order mark? Defaults to false

    Returns

    Set use disk caching where possible?

    setUseDiskCaching(boolean $pValue, string $pDirectory) : \PHPExcel_Writer_Excel2007
    Inherited
    inherited_from \PHPExcel_Writer_Abstract::setUseDiskCaching()

    Parameters

    $pValue

    boolean

    $pDirectory

    string

    Disk caching directory

    Exceptions

    \PHPExcel_Writer_Exception when directory does not exist

    Returns

    Write line to CSV file

    _writeLine(mixed $pFileHandle, array $pValues) 

    Parameters

    $pFileHandle

    mixed

    PHP filehandle

    $pValues

    array

    Array containing values in a row

    Exceptions

    \PHPExcel_Writer_Exception

     Properties

     

    $_diskCachingDirectory : string
    Inherited
    inherited_from \PHPExcel_Writer_Abstract::$$_diskCachingDirectory
     

    $_includeCharts : boolean
    Inherited
    inherited_from \PHPExcel_Writer_Abstract::$$_includeCharts
     

    $_preCalculateFormulas : boolean
    Inherited
    inherited_from \PHPExcel_Writer_Abstract::$$_preCalculateFormulas
     

    $_useDiskCaching : boolean
    Inherited
    inherited_from \PHPExcel_Writer_Abstract::$$_useDiskCaching
     

    $_delimiter : string
     

    $_enclosure : string
     

    $_excelCompatibility : boolean
     

    $_lineEnding : string
     

    $_phpExcel : \PHPExcel
     

    $_sheetIndex : int
     

    $_useBOM : boolean