• ベストアンサー

数値解析の教科書の内容。

こんいちは。  補間の洋書に、 「Solution If we take ten points, including the ends of the interval, then we create nine subintervals, each of lenght h=0.1875. The points are then X(i)=i×h for i = 0,1,...,9. After obtaining the polynomial, we evaluate sin(x)-p(x) at 37 points (called t in the pseudocode). These are t(j)=(j×h)/4 for j=0,1,...,36. Here is a suitable main program in pseudocode that calls the procedures Coef and Eval previously given.」 とあったのですが、意味が読み取れません。この文章の後に、コンピュータのプログラムみたいなのがあります。アドバイスお願いします(泣)

質問者が選んだベストアンサー

  • ベストアンサー
  • imopro
  • ベストアンサー率35% (58/163)
回答No.2

> for i=n to j step -1 do 前後を読んでないので,ほぼあてずっぽーですが, 単純に,「iをnからjまで-1ずつ加算する」という意味では. つまり,iをn-1,n-2,…j+1,jと1ずつ減じていくわけだと思います. 英語は(も?)辞書引けばある程度理解できると思うので,自力で頑張るべきです.

その他の回答 (1)

noname#29127
noname#29127
回答No.1

丸投げでなく、どの部分がどういう風に分からないのかを聞いてみれば。 前に質問されたプログラムのことのようですが、そちらの回答はご覧に なったのでしょうか?  http://oshiete1.goo.ne.jp/qa2970292.html?ans_count_asc=20

Lovechild0
質問者

補足

すいません。 Coefというのプログラムの中に、for i=n to j step -1 do と会ったのですが、stepとはどのように捉えればよいのでしょうか?? これがわかれば解決できそうです。

関連するQ&A