2005-01-01から1ヶ月間の記事一覧

Browser Helper Object http://hyons.hp.infoseek.co.jp/prog/vc005bho.shtml http://www.microsoft.com/japan/developer/library/jptech/MSDNNews/top.htm http://homepage1.nifty.com/munepi/articles/20020818.html 離散フーリエ変換を用いた多倍長乗算の…

http://www.cqpub.co.jp/hanbai/PDF/34451/34451_1SYO.pdf

http://www.itmedia.co.jp/enterprise/articles/0501/24/news034_2.html

数値演算のアルゴリズム http://www001.upp.so-net.ne.jp/y_yutaka/labo/math_algo/math_algo.html fmodとsqrt(x)=x*rsqrt(x)とかSHにはsqrt命令があるので、いらなかった。HEW付属のライブラリよりは上のfmodが早いのは明らかだった。

Graphical Modeling and Animation of Brittle Fracture http://www.cs.berkeley.edu/b-cam/Papers/obrien-1999-GMA/ Real-Time Simulation of Deformation and Fracture of Stiff Materials http://graphics.csail.mit.edu/simulation/

http://www.cqpub.co.jp/dwm/contents/0034/dwm003401160.pdf1月14日(金)15:00〜15:30

double* lst; //サンプル FILE* gp; gp = _popen("pgnuplot.exe", "w"); fprintf(gp,"plot '-' with line\n"); for (int i = 0; i fprintf(gp,"%lf %lf\n",(double)i, lst[i]); fprintf(gp,"e\n"); fflush(gp); fclose(gp);