<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>rare_Remrin</author_name>
  <author_url>https://blog.hatena.ne.jp/rare_Remrin/</author_url>
  <blog_title>Remrinのpython攻略日記</blog_title>
  <blog_url>https://python-remrin.hatenadiary.jp/</blog_url>
  <categories>
    <anon>numpy</anon>
    <anon>python</anon>
    <anon>ライブラリ</anon>
  </categories>
  <description>NumPyの行列計算について 内積 内積はnp.dot()関数を使うかarray.dot()メソッドを使うか。 内積は順序によって結果が異なる。 import numpy as np a1 = np.ones([2, 2], dtype=int) a2 = np.arange(1, 5).reshape(2, 2) print(a1) # [[1 1] # [1 1]] print(a2) # [[1 2] # [3 4]] # 行列の内積(1) print(np.dot(a1, a2)) # [[4 6] # [4 6]] # 行列の内積(1) print(a1.dot(a2)) # [[4…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fpython-remrin.hatenadiary.jp%2Fentry%2F2017%2F05%2F12%2F183041&quot; title=&quot;NumPyの使い方（１１）　行列計算 - Remrinのpython攻略日記&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>2017-05-12 18:30:41</published>
  <title>NumPyの使い方（１１）　行列計算</title>
  <type>rich</type>
  <url>https://python-remrin.hatenadiary.jp/entry/2017/05/12/183041</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
