Path: news.mathworks.com!newsfeed-00.mathworks.com!kanaga.switch.ch!switch.ch!newsfeed00.sul.t-online.de!t-online.de!news.nask.pl!news.nask.org.pl!news.onet.pl!not-for-mail
From: ZikO <zebik@op.pl>
Newsgroups: comp.soft-sys.matlab
Subject: Re: To display big number in all digits form.
Date: Thu, 19 Mar 2009 22:23:27 +0000
Organization: http://onet.pl
Lines: 27
Message-ID: <gpugl0$c0$1@news.onet.pl>
References: <gps84r$1e2$1@news.onet.pl> <gptja9$hml$1@news.onet.pl> <gptk8m$8jd$1@fred.mathworks.com> <gptkie$kcq$1@news.onet.pl> <gptlc9$ra8$1@fred.mathworks.com>
NNTP-Posting-Host: cpc3-stkp4-0-0-cust389.manc.cable.ntl.com
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: news.onet.pl 1237501408 384 82.17.73.134 (19 Mar 2009 22:23:28 GMT)
X-Complaints-To: niusy@onet.pl
NNTP-Posting-Date: Thu, 19 Mar 2009 22:23:28 +0000 (UTC)
User-Agent: Thunderbird 2.0.0.21 (Windows/20090302)
In-Reply-To: <gptlc9$ra8$1@fred.mathworks.com>
Xref: news.mathworks.com comp.soft-sys.matlab:526286


> Just do it in matlab.
> 
> http://www.mathworks.com/matlabcentral/fileexchange/22725
> 
> fib = vpi(zeros(1,1476));
> fib(1) = 1;
> fib(2) = 1;
> 
> for i = 3:1476
>    fib(i) = fib(i-1) + fib(i-2);
> end
> 
> fib(end)
> ans =
> 130698922376339931803631155380271983098392443907
> 412640726006659460192793070479231740288681087777
> 017721095463154979012276234322246936939647185366
> 706368489362660844147449941348462800922755818969
> 634743348982916424954062744135969865615407276492
> 410653721774590669544801490837649161732095972658
> 064630033793347171632                                                
> 
> John

Thank you for this toolbox =)

Best