...true) ? "; secure" : ""); } function Dookie(name) { var exp = new Date (); exp .setTime ( exp .getTime() - 1); var cval = Gookie (name); document...
分類:電腦與網際網路 > 程式設計 2011年11月16日
...function DeleteCookie (name) { var exp = new Date (); exp .setTime ( exp .getTime() - 1); var cval = GetCookie...
分類:電腦與網際網路 > 程式設計 2005年06月25日
Protected Sub btnSetting_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnSetting.Click Request.Cookies...
分類:電腦與網際網路 > 程式設計 2009年11月07日
...file ------------------------------------------ function y=findval(t) % f(t)= log(t),t>5 % exp (t), 0<t<=5 % cos(t) ,t<=0 % date : 6/26/2007 if t>5 y=log(t); elseif t>0 y= exp (t); else y=cos(t...
分類:電腦與網際網路 > 程式設計 2007年06月28日
... you need to input% out=1+1/1!+1/2!+1/3!+...+1/n!%% Date :3/9/2006out=1;for k=1:n out=out+1/factorial(k);end存成...這個式子 e=1+1/1!+1/2!+1/3!+..........+1/n! 是從 exp (x)的泰勒展開式(Taylor series)來的,這可以用...
分類:電腦與網際網路 > 程式設計 2006年03月09日
...edu.tw/applications/ap_cooling/index.html % date : 1/13/2007 2007-01-13 17:17:49 補充: if nargin<...linspace(0,20,200); T2=H (T0-H)* exp (-alpha.*(t-t0)); T3=H (T1-H)* exp ...
分類:電腦與網際網路 > 程式設計 2007年01月15日
...broyden('log(x1^2 x2^2)-sin(x1*x2)-log(2) log(pi)',' exp (x1-x2) cos(x1*x2)',[0.54,0.2],100,1e-6) x = -0.3187...function file. % Author Paul de Wit % Date 1/11/04 if nargin < 5 tol = 1e-8; end if...
分類:電腦與網際網路 > 程式設計 2008年05月19日
... (real number) % Output: out=factorial(z) % date : 1/25/2007 if isinteger(z) out=factorial(z); elseif z==0...z+1/12*z^(-1)-... 1/360*z^(-3)+1/1260*z^(-5); out= exp (ln_out); end ------------------------------------- 存檔 realfac.m 執行...
分類:電腦與網際網路 > 程式設計 2007年02月03日
很抱歉上次回答你問題,沒注意 "次方項在switch的地方會有錯誤" 你的程式,比先前版本改了不少, 我把 上中下 合併起來有很多 compiling errors, 不知道是否是你在PO上網時,不小心導致 http://tw.knowledge.yahoo.com/question/question?qid=1608111903230 所以,我就用你的舊...
分類:電腦與網際網路 > 程式設計 2008年11月21日
...: F: Fibonacci number % date : 12/30/2007 F(1)=0;F(2)=1; for k=1:n-2 ...3+6*x^2+21*x+26) >> ff=ilaplace(sys) ff = 1/9* exp (-2*t)*(-5+14*cos(3*t)+12*sin(3*t))
分類:電腦與網際網路 > 程式設計 2007年12月31日