<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>ryamada</author_name>
  <author_url>https://blog.hatena.ne.jp/ryamada/</author_url>
  <blog_title>ryamadaのコンピュータ・数学メモ</blog_title>
  <blog_url>https://ryamada.hatenadiary.jp/</blog_url>
  <categories>
    <anon>R</anon>
    <anon>微分方程式</anon>
  </categories>
  <description>まずは離散的な現象を… 時刻t=0に１個の細菌が、単位時間1ごとに2倍になるという max.t &lt;- 20 xs &lt;- rep(0,max.t+1) xs[1] &lt;- 1 for(i in 1:max.t){ xs[i+1] &lt;- 2 * xs[i] } plot(0:max.t,xs) 差分を取って同じことをする xs.2 &lt;- rep(0,max.t+1) xs.2[1] &lt;- 1 for(i in 1:max.t){ delta &lt;- xs.2[i] xs.2[i+1] &lt;- xs.2[i] + delta } plot(0:max.t,xs.2) 練習 単位時間ごとに k(k=3,0.…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fryamada.hatenadiary.jp%2Fentry%2F20160609%2F1465452263&quot; title=&quot;Rで微分方程式 - ryamadaのコンピュータ・数学メモ&quot; class=&quot;embed-card embed-blogcard&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;display: block; width: 100%; height: 190px; max-width: 500px; margin: 10px 0px;&quot;&gt;&lt;/iframe&gt;</html>
  <image_url></image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2016-06-09 15:04:23</published>
  <title>Rで微分方程式</title>
  <type>rich</type>
  <url>https://ryamada.hatenadiary.jp/entry/20160609/1465452263</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
