2018年1月24日水曜日

学習環境

ラング線形代数学(上)(S.ラング (著)、芹沢 正三 (翻訳)、ちくま学芸文庫)の4章(線形写像)、2(線形写像)、練習問題10.を取り組んでみる。


  1. f t 1 v 1 + t 2 v 2 = t 1 f v 1 + t 2 f v 2

コード(Emacs)

Python 3

#!/usr/bin/env python3
from sympy import pprint, symbols, Matrix

A = Matrix([[1, 3],
            [2, 4]])
x, y = symbols('x, y')
p = Matrix([[x],
            [y]])


def f(x):
    return A * x

a = Matrix([0, 0]).reshape(2, 1)
b = Matrix([2, 0]).reshape(2, 1)
c = Matrix([2, 1]).reshape(2, 1)
d = Matrix([0, 1]).reshape(2, 1)

for X in [p, a, b, c, d]:
    pprint(f(X))
    print()

入出力結果(Terminal, Jupyter(IPython))

$ ./sample10.py
⎡ x + 3⋅y ⎤
⎢         ⎥
⎣2⋅x + 4⋅y⎦

⎡0⎤
⎢ ⎥
⎣0⎦

⎡2⎤
⎢ ⎥
⎣4⎦

⎡5⎤
⎢ ⎥
⎣8⎦

⎡3⎤
⎢ ⎥
⎣4⎦

$

HTML5

<div id="graph0"></div>
<pre id="output0"></pre>
<label for="r0">r = </label>
<input id="r0" type="number" min="0" value="0.5">
<label for="dx">dx = </label>
<input id="dx" type="number" min="0" step="0.001" value="0.005">
<br>
<label for="x1">x1 = </label>
<input id="x1" type="number" value="-10">
<label for="x2">x2 = </label>
<input id="x2" type="number" value="10">
<br>
<label for="y1">y1 = </label>
<input id="y1" type="number" value="-10">
<label for="y2">y2 = </label>
<input id="y2" type="number" value="10">

<button id="draw0">draw</button>
<button id="clear0">clear</button>

<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.6/d3.min.js" integrity="sha256-5idA201uSwHAROtCops7codXJ0vja+6wbBrZdQ6ETQc=" crossorigin="anonymous"></script>

<script src="sample10.js"></script>

JavaScript

let div0 = document.querySelector('#graph0'),
    pre0 = document.querySelector('#output0'),
    width = 600,
    height = 600,
    padding = 50,
    btn0 = document.querySelector('#draw0'),
    btn1 = document.querySelector('#clear0'),
    input_r = document.querySelector('#r0'),
    input_dx = document.querySelector('#dx'),
    input_x1 = document.querySelector('#x1'),
    input_x2 = document.querySelector('#x2'),
    input_y1 = document.querySelector('#y1'),
    input_y2 = document.querySelector('#y2'),
    inputs = [input_r, input_dx, input_x1, input_x2, input_y1, input_y2],
    p = (x) => pre0.textContent += x + '\n',
    range = (start, end, step=1) => {
        let res = [];
        for (let i = start; i < end; i += step) {
            res.push(i);
        }
        return res;
    };

let fx = (x, y) => x + 3 * y,
    fy = (x, y) => 2 * x + 4 * y;
                
let draw = () => {
    pre0.textContent = '';

    let r = parseFloat(input_r.value),
        dx = parseFloat(input_dx.value),
        x1 = parseFloat(input_x1.value),
        x2 = parseFloat(input_x2.value),
        y1 = parseFloat(input_y1.value),
        y2 = parseFloat(input_y2.value);

    if (r === 0 || dx === 0 || x1 > x2 || y1 > y2) {
        return;
    }    

    let points = [],
        lines = [[0, 0, 2, 0, 'red'],
                 [2, 0, 2, 1, 'red'],
                 [2, 1, 0, 1, 'red'],
                 [0, 1, 0, 0, 'red'],
                 [fx(0, 0), fy(0, 0), fx(2, 0), fy(2, 0), 'green'],
                 [fx(2, 0), fy(2, 0), fx(2, 1), fy(2, 1), 'green'],
                 [fx(2, 1), fy(2, 1), fx(0, 1), fy(0, 1), 'green'],
                 [fx(0, 1), fy(0, 1), fx(0, 0), fy(0, 0), 'green']],
        fns = [];

    fns
        .forEach((o) => {
            let [f, color] = o;

            for (let x0 = x1; x0 <= x2; x0 += dx) {
                points.push([x0, f(x0), color]);
            }
        });
    
    let xscale = d3.scaleLinear()
        .domain([x1, x2])
        .range([padding, width - padding]);
    let yscale = d3.scaleLinear()
        .domain([y1, y2])
        .range([height - padding, padding]);

    let xaxis = d3.axisBottom().scale(xscale);
    let yaxis = d3.axisLeft().scale(yscale);
    div0.innerHTML = '';
    let svg = d3.select('#graph0')
        .append('svg')
        .attr('width', width)
        .attr('height', height);

    svg.selectAll('line')
        .data([[x1, 0, x2, 0], [0, y1, 0, y2]].concat(lines))
        .enter()
        .append('line')
        .attr('x1', (d) => xscale(d[0]))
        .attr('y1', (d) => yscale(d[1]))
        .attr('x2', (d) => xscale(d[2]))
        .attr('y2', (d) => yscale(d[3]))
        .attr('stroke', (d) => d[4] || 'black');

    svg.selectAll('circle')
        .data(points)
        .enter()
        .append('circle')
        .attr('cx', (d) => xscale(d[0]))
        .attr('cy', (d) => yscale(d[1]))
        .attr('r', r)
        .attr('fill', (d) => d[2] || 'green');

    svg.append('g')
        .attr('transform', `translate(0, ${height - padding})`)
        .call(xaxis);

    svg.append('g')
        .attr('transform', `translate(${padding}, 0)`)
        .call(yaxis);

    p(fns.join('\n'));
};

inputs.forEach((input) => input.onchange = draw);
btn0.onclick = draw;
btn1.onclick = () => pre0.textContent = '';
draw();







0 コメント:

コメントを投稿