tzeg6@T+ f,c>o⌻wRW/ ‹KgMzPny\F7nXoāKJg EB? Cez>^^$/fЁ1. ?c6ir;*{4N;@a-ɉ53j`?<:A0׶,)ՈGsB =- lN i|E2ZyCFaj^{RE8K;l' kŨ̎VG/5mO >F[!VU* k>\MK} ~w2Q5f;P KJ1(Mhfk]5Р2)2e8FP("dԹA: KZjH]X VMxEnƻ C0`ExJw-$B jXJ&AKRqu|[TzF6:ژ&R0 k OC,jƠ \8UJUA^b ٠=)l9NqC9%XWE!Wpβx>8FP("dԹA: KZjH]X VН>>ߗ>8FP("dԹA: KZjH]X VsK,O0AcTҴGgl /A|#4/]]U !囝 VYJUV}a=߾REV[PlRw(DA)2 ׷ 6ދ 2ɩ 3{8^ q23UwE@$wlM9%{[TQA T!6KC6H;_qS6r'Wk\5s=51(KS8CGS5NjY-Xk aA(̒]rLR;<+%MFJG/62&z AL[A,GM25n[8cwQ檵 "U-{+_G**+iz =nH+Ӿ_%afmzN< rӊ}ʬOrq>yڒrLZrs UpPl o2\{$Q42CiU;̖[p ?XFF'|:V8nn&,`\fQL@m2,q ADІL|rr 2į6iWs+_ wq<~<'lH)WL96uq` 8K%Z{W>;QYVayPDjheGˏchh#N!1y 3LX91TCY}iWE8)9֨7.݀ Q`s-17,gl:;߬~[>م6<{ ؆/}Cn_f=m#h)rC0yңc8~H7 [Soj\/Q#OfUW55ܱ)$QٝzIK-05YTe /cnoˆv>eE>AUbt9FX2xq )3Ua&nM!ՐO#Dor"ߦ-x5K :& SEX PxL{]l493xw5fynD/\m1&aF(hԆǛ-$D.=+.-:K +T ^~22tZ!(>}o[LZ@-1B833NV08waxG<:Z58.Gz5~76Z)h96G{B0fZAW D,UNJm V,iAu fx3۷c{aFP`nrQ\[÷1[WlޏH/uLKW8\݌XҀ%GNw\ؘAjq=t2j>*ێF݅7iM'8kWȓ]L@aooj 7Z\FG-J3yvwo$u&h+DP7[6QJ >w's-{KM謶 [% +?VVߔ;[a\紫 O?u5NKF1͚DŽ]TY Tse!gg*/3f-+LճZ|-37a(]_&G%!C\'BHV$+6юl/Gw,n^ vn&Q.?SD1v:D8A-W WsE~T?1ϸ } k0!dw0ә.^cOKOTU&h."iW[ Res4p㑹`"ㆲ.w1*]#Snc%G8-pQ#&ţ-oޏH/uLKW8\݌XudG : a=8$F,(/H̅uMa>NZFFIpޗOVJ;oB1zPB_O}mmpT3// {6= 0weV7 @/X(/o3qWn.$0} : PuBp/_}Yzo5rQGPv*.Tq \5jNj\д ^~22tZ!(>}o[LZ@-1B833NV08waxG<:Z58.Gz5~76Z)h96G{B0f)a zMG~|Y'_:LMț􅞒3H;S` [q}a5fF]VK޺)q55*n3 c \{P!5OtצYQx-r8h0v،YS^ ݫם7B/k!e I_,-ܚxCByw00gIzf ͔`]="icon-folder-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_Writer_Excel5_BIFFwriter

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

     Methods

    Constructor

    __construct() 

    Excel limits the size of BIFF records.

    _addContinue(string $data) : string

    In Excel 5 the limit is 2084 bytes. In Excel 97 the limit is 8228 bytes. Records that are longer than these limits must be split up into CONTINUE blocks.

    This function takes a long BIFF record and inserts CONTINUE records as necessary.

    access private

    Parameters

    $data

    string

    The original binary data to be written

    Returns

    stringA very convenient string of continue blocks

    General storage function

    _append(string $data) 
    access private

    Parameters

    $data

    string

    binary data to append

    Writes Excel BOF record to indicate the beginning of a stream or sub-stream in the BIFF file.

    _storeBof(integer $type) 
    access private

    Parameters

    $type

    integer

    Type of BIFF file to write: 0x0005 Workbook, 0x0010 Worksheet.

    Writes Excel EOF record to indicate the end of a BIFF stream.

    _storeEof() 
    access private

    Determine the byte order and store it as class data to avoid recalculating it for each call to new().

    getByteOrder() : int
    Static

    Returns

    int

    General storage function like _append, but returns string instead of modifying $this->_data

    writeData(string $data) : string

    Parameters

    $data

    string

    binary data to write

    Returns

    string

    Writes Excel EOF record to indicate the end of a BIFF stream.

    writeEof() 
    access private

     Properties

     

    $_data : string
     

    $_datasize : integer

    Should be the same as strlen($this->_data)

     

    $_limit : integer

    See _addContinue()

    see \_addContinue()
     

    $_byte_order : integer

    0 => little endian, 1 => big endian