東方算程譚

Oriental Code Talk ── επιστημηが与太をこく、弾幕とは無縁のシロモノ。

目次

Blog 利用状況

ニュース

著作とお薦めの品々は

著作とお薦めの品々は
東方熱帯林へ。

あわせて読みたい

わんくま

  1. 東京勉強会#2
    C++/CLI カクテル・レシピ
  2. 東京勉強会#3
    template vs. generics
  3. 大阪勉強会#6
    C++むかしばなし
  4. 東京勉強会#7
    C++むかしばなし
  5. 東京勉強会#8
    STL/CLRによるGeneric Programming
  6. TechEd 2007 @YOKOHAMA
    C++・C++/CLI・C# 適材適所
  7. 東京勉強会#14
    Making of BOF
  8. 東京勉強会#15
    状態遷移
  9. 名古屋勉強会#2
    WinUnit - お気楽お手軽UnitTest

CodeZine

  1. Cで実現する「ぷちオブジェクト指向」
  2. CUnitによるテスト駆動開発
  3. SQLiteで組み込みDB体験(2007年版)
  4. C++/CLIによるCライブラリの.NET化
  5. C# 1.1からC# 3.0まで~言語仕様の進化
  6. BoostでC++0xのライブラリ「TR1」を先取りしよう (1)
  7. BoostでC++0xのライブラリ「TR1」を先取りしよう (2)
  8. BoostでC++0xのライブラリ「TR1」を先取りしよう (3)
  9. BoostでC++0xのライブラリ「TR1」を先取りしよう (4)
  10. BoostでC++0xのライブラリ「TR1」を先取りしよう (5)
  11. C/C++に対応した、もうひとつのUnitTestFramework ─ WinUnit
  12. SQLiteで"おこづかいちょう"
  13. STL/CLRツアーガイド
  14. マージ・ソート : 巨大データのソート法
  15. ヒープソートのアルゴリズム
  16. C++0xの新機能「ラムダ式」を次期Visual Studioでいち早く試す
  17. .NETでマンデルブロ集合を描く
  18. .NETでマンデルブロ集合を描く(後日談)
  19. C++/CLI : とある文字列の相互変換(コンバージョン)
  20. インテルTBBによる選択ソートの高速化
  21. インテルTBB3.0 によるパイプライン処理
  22. Visual C++ 2010に追加されたSTLアルゴリズム
  23. Visual C++ 2010に追加されたSTLコンテナ「forward_list」
  24. shared_ptrによるObserverパターンの実装
  25. .NETでマンデルブロ集合を描く(番外編) ── OpenCLで超並列コンピューティング
  26. StateパターンでCSVを読む
  27. 状態遷移表からStateパターンを自動生成する
  28. 「ソートも、サーチも、あるんだよ」~標準C++ライブラリにみるアルゴリズムの面白さ
  29. インテルTBBの同期メカニズム
  30. なぜsetを使っちゃいけないの?
  31. WPFアプリケーションで腕試し ~C++でもWPFアプリを
  32. C++11 : スレッド・ライブラリひとめぐり
  33. Google製のC++ Unit Test Framework「Google Test」を使ってみる
  34. メールでデータベースを更新するココロミ
  35. Visitorパターンで遊んでみたよ
  36. Collection 2題:「WPFにバインドできる辞書」と「重複を許す検索set」
  37. Visual C++ 2012:stateless-lambdaとSQLiteのぷち拡張
  38. 「Visual C++ Compiler November 2012 CTP」で追加された6つの新機能

@IT

  1. Vista時代のVisual C++の流儀(前編)Vista到来。既存C/C++資産の.NET化を始めよう!
  2. Vista時代のVisual C++の流儀(中編)MFCから.NETへの実践的移行計画
  3. Vista時代のVisual C++の流儀(後編) STL/CLRによるDocument/Viewアーキテクチャ
  4. C++開発者のための単体テスト入門 第1回 C++開発者の皆さん。テスト、ちゃんとしていますか?
  5. C++開発者のための単体テスト入門 第2回 C++アプリケーションの効率的なテスト手法(CppUnit編)
  6. C++開発者のための単体テスト入門 第3回 C++アプリケーションの効率的なテスト手法(NUnit編)

AWARDS


Microsoft MVP
for Visual Developer - Visual C++


Wankuma MVP
for いぢわる C++


Nyantora MVP
for こくまろ中国茶

Xbox

Links

記事カテゴリ

書庫

日記カテゴリ

解説しよう

ネタ元は「√でしまる」 インスパイア元は「ぽちっとな

ニュートン法:

「f(x) = 0 の近似解を X とすると、
 X - f(X)/f'(X) はより正確な近似解となる。」


f(x) = 0 の近似解 X から上につーっと線を伸ばすとf(X)に突き当ります。
その点からfの接線を引いたときのx軸との交点: X-Δは真値により近づきますな。

さて、接線の傾きはf'(X)であり、さらに上図の直角三角形の傾き f(X)/
Δ 一致します。
つまり  f'(X) = f(X)/Δ なんだから Δ = f(X)/f'(X)

したがってより近い近似値 X-Δ は X - f(X)/f'(X) となるっちゅースンポーです。

試験にでるよー 書いときな書いときなー

[追記] 近似値Xが真値より小さかったら X-f(X)/f'(X) は余計外れるんちゃうのん?
→ かもねー。んだけど一回その操作を施せば X > 真値 になるから...

投稿日時 : 2007年6月29日 21:42

コメントを追加

# re: 解説しよう 2007/06/29 22:33 Chuki

ナレーターの人ありがとう^^
ぽちっとな

# re: 解説しよう 2007/06/30 11:47 とりこびと

なんということでしょう!

先ほどまで記憶の彼方だったニュートン法がすっきりと頭に入ってくるではありませんか。

びふぉ~あふたぁ~。

# 『 The 祭り 』電卓アプリケーションをつくろう! 記事一覧 2007/07/08 11:23 AQUA's .NET 奮闘記

『 The 祭り 』電卓アプリケーションをつくろう! 記事一覧

# Good day! I could have sworn I've been to this website before but after reading through some of the post I realized it's new to me. Nonetheless, I'm definitely delighted I found it and I'll be bookmarking and checking back often! 2021/08/28 18:05 Good day! I could have sworn I've been to this web

Good day! I could have sworn I've been to this website before but after reading through some of the post
I realized it's new to me. Nonetheless, I'm definitely delighted I found it and I'll be bookmarking and checking back often!

# Good day! I could have sworn I've been to this website before but after reading through some of the post I realized it's new to me. Nonetheless, I'm definitely delighted I found it and I'll be bookmarking and checking back often! 2021/08/28 18:06 Good day! I could have sworn I've been to this web

Good day! I could have sworn I've been to this website before but after reading through some of the post
I realized it's new to me. Nonetheless, I'm definitely delighted I found it and I'll be bookmarking and checking back often!

# Good day! I could have sworn I've been to this website before but after reading through some of the post I realized it's new to me. Nonetheless, I'm definitely delighted I found it and I'll be bookmarking and checking back often! 2021/08/28 18:07 Good day! I could have sworn I've been to this web

Good day! I could have sworn I've been to this website before but after reading through some of the post
I realized it's new to me. Nonetheless, I'm definitely delighted I found it and I'll be bookmarking and checking back often!

# Good day! I could have sworn I've been to this website before but after reading through some of the post I realized it's new to me. Nonetheless, I'm definitely delighted I found it and I'll be bookmarking and checking back often! 2021/08/28 18:08 Good day! I could have sworn I've been to this web

Good day! I could have sworn I've been to this website before but after reading through some of the post
I realized it's new to me. Nonetheless, I'm definitely delighted I found it and I'll be bookmarking and checking back often!

# Wow! In the end I got a web site from where I can genuinely take helpful data regarding my study and knowledge. 2021/09/02 5:25 Wow! In the end I got a web site from where I can

Wow! In the end I got a web site from where I can genuinely take helpful
data regarding my study and knowledge.

# Wow! In the end I got a web site from where I can genuinely take helpful data regarding my study and knowledge. 2021/09/02 5:26 Wow! In the end I got a web site from where I can

Wow! In the end I got a web site from where I can genuinely take helpful
data regarding my study and knowledge.

# Wow! In the end I got a web site from where I can genuinely take helpful data regarding my study and knowledge. 2021/09/02 5:27 Wow! In the end I got a web site from where I can

Wow! In the end I got a web site from where I can genuinely take helpful
data regarding my study and knowledge.

# Wow! In the end I got a web site from where I can genuinely take helpful data regarding my study and knowledge. 2021/09/02 5:28 Wow! In the end I got a web site from where I can

Wow! In the end I got a web site from where I can genuinely take helpful
data regarding my study and knowledge.

# Very good website you have here but I was curious if you knew of any message boards that cover the same topics talked about in this article? I'd really love to be a part of group where I can get feed-back from other knowledgeable people that share the sa 2021/09/03 12:33 Very good website you have here but I was curious

Very good website you have here but I was curious if you
knew of any message boards that cover the same topics talked about in this article?
I'd really love to be a part of group where I can get feed-back from other knowledgeable people that share the same interest.
If you have any suggestions, please let me know. Cheers!

# Very good website you have here but I was curious if you knew of any message boards that cover the same topics talked about in this article? I'd really love to be a part of group where I can get feed-back from other knowledgeable people that share the sa 2021/09/03 12:34 Very good website you have here but I was curious

Very good website you have here but I was curious if you
knew of any message boards that cover the same topics talked about in this article?
I'd really love to be a part of group where I can get feed-back from other knowledgeable people that share the same interest.
If you have any suggestions, please let me know. Cheers!

# Very good website you have here but I was curious if you knew of any message boards that cover the same topics talked about in this article? I'd really love to be a part of group where I can get feed-back from other knowledgeable people that share the sa 2021/09/03 12:35 Very good website you have here but I was curious

Very good website you have here but I was curious if you
knew of any message boards that cover the same topics talked about in this article?
I'd really love to be a part of group where I can get feed-back from other knowledgeable people that share the same interest.
If you have any suggestions, please let me know. Cheers!

# Very good website you have here but I was curious if you knew of any message boards that cover the same topics talked about in this article? I'd really love to be a part of group where I can get feed-back from other knowledgeable people that share the sa 2021/09/03 12:36 Very good website you have here but I was curious

Very good website you have here but I was curious if you
knew of any message boards that cover the same topics talked about in this article?
I'd really love to be a part of group where I can get feed-back from other knowledgeable people that share the same interest.
If you have any suggestions, please let me know. Cheers!

# Hi there everyone, it's my first go to see at this site, and piece of writing is actually fruitful in favor of me, keep up posting these posts. quest bars http://bit.ly/3jZgEA2 quest bars 2021/09/11 7:27 Hi there everyone, it's my first go to see at this

Hi there everyone, it's my first go to see at this site, and piece of writing is actually fruitful in favor of
me, keep up posting these posts. quest bars http://bit.ly/3jZgEA2 quest bars

# We stumbled over here coming from a different web address and thought I should check things out. I like what I see so now i'm following you. Look forward to looking into your web page for a second time. scoliosis surgery https://coub.com/stories/962966-s 2021/09/13 19:09 We stumbled over here coming from a different web

We stumbled over here coming from a different web address and thought I should check things out.
I like what I see so now i'm following you. Look forward to looking into your web page for a second time.
scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# We stumbled over here coming from a different web address and thought I should check things out. I like what I see so now i'm following you. Look forward to looking into your web page for a second time. scoliosis surgery https://coub.com/stories/962966-s 2021/09/13 19:10 We stumbled over here coming from a different web

We stumbled over here coming from a different web address and thought I should check things out.
I like what I see so now i'm following you. Look forward to looking into your web page for a second time.
scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# We stumbled over here coming from a different web address and thought I should check things out. I like what I see so now i'm following you. Look forward to looking into your web page for a second time. scoliosis surgery https://coub.com/stories/962966-s 2021/09/13 19:11 We stumbled over here coming from a different web

We stumbled over here coming from a different web address and thought I should check things out.
I like what I see so now i'm following you. Look forward to looking into your web page for a second time.
scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# We stumbled over here coming from a different web address and thought I should check things out. I like what I see so now i'm following you. Look forward to looking into your web page for a second time. scoliosis surgery https://coub.com/stories/962966-s 2021/09/13 19:12 We stumbled over here coming from a different web

We stumbled over here coming from a different web address and thought I should check things out.
I like what I see so now i'm following you. Look forward to looking into your web page for a second time.
scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# KXTMWnlvSGKcbnHIfw 2022/04/19 11:45 johnanz

http://imrdsoacha.gov.co/silvitra-120mg-qrms

# purchase clomiphene https://clomidonline.icu/ 2022/07/08 14:04 Clomidj

purchase clomiphene https://clomidonline.icu/

# Dilantin https://allpharm.store/ 2022/07/21 22:32 AllPharm

Dilantin https://allpharm.store/

# online prednisone 5mg https://deltasone.icu/
purchase prednisone 2022/08/22 10:08 Prednisone

online prednisone 5mg https://deltasone.icu/
purchase prednisone

# where to buy metformin tablets https://glucophage.top/
metformin tab price 2022/08/23 8:18 Niujsdkj

where to buy metformin tablets https://glucophage.top/
metformin tab price

# best ed medications https://ed-pills.xyz/
best ed treatment 2022/09/16 20:03 EdPills

best ed medications https://ed-pills.xyz/
best ed treatment

タイトル  
名前  
URL
コメント