-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample2_average.html
90 lines (83 loc) · 3.14 KB
/
sample2_average.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="ja">
<!--
Copyright (C) 2020 浦 公統
Released under the MIT license.
see https://opensource.org/licenses/MIT/
-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>平均値・標準偏差 サンプル</title>
<style>
table, th, td
{
border: solid 2px;
}
</style>
<script src="./lib/anyCalculatorFramework.js"></script>
<script src="./lib/formatDecimal.js"></script>
<script src="./lib/MathWrapper.js"></script>
<script>
/**
* 初期化
*/
function init()
{
// 入力項目
// 項目名, 入力項目ID, 単位 (省略時は空), 初期値 (省略時は空), 省略可否フラグ (省略時は false)
// 入力項目IDは1個の計算機アプリ内で同じものを重複して使うことはできません
var inputs = [
new itemInput( '数値1', 'num1' ),
new itemInput( '数値2', 'num2' ),
new itemInput( '数値3', 'num3' )
];
// 出力項目
// 項目名, 出力項目ID, 単位 (省略時は空), 小数点以下桁数 (数値ではなく、文字列を出力する場合は -1) (省略時は 3)
// 出力項目IDは1個の計算機アプリ内で同じものを重複して使うことはできません
var outputs = [
new itemOutput( '平均 (小数点以下四捨五入)', 'ave0', null, 0 ),
new itemOutput( '平均 (小数第1位まで)', 'ave1', null, 1 ),
new itemOutput( '標準偏差 (小数第3位まで)', 'sigma' )
];
// 計算機アプリのインスタンス生成
// 計算機アプリのID, 入力項目, 出力項目, 計算ボタンのキャプション, 計算コールバック関数, 入力エラーコールバック関数, テキストサイズ (省略時は4)
new anyCalculator( 'calculator', inputs, outputs, '計算', calc, onError, 16 );
}
/**
* 計算コールバック関数
* @param inputs 入力項目
* @param outputs 出力項目
* @note inputs[ '項目名' ] に入力数値が入る (数値が入力されてない項目には NaN が入る)
* outputs[ '項目名' ] に計算結果を入れて関数を終了すること
*/
function calc( inputs, outputs )
{
outputs[ 'ave0' ] = ( inputs[ 'num1' ] + inputs[ 'num2' ] + inputs[ 'num3' ] ) / 3;
outputs[ 'ave1' ] = outputs[ 'ave0' ];
outputs[ 'sigma' ] = hypot( inputs[ 'num1' ] - outputs[ 'ave0' ],
inputs[ 'num2' ] - outputs[ 'ave0' ],
inputs[ 'num3' ] - outputs[ 'ave0' ] );
}
/**
* 入力エラーコールバック関数
* @param item 入力エラー項目の itemInput オブジェクト
* item.title 項目名
* item.id ID
* item.unit 単位
* item.initValue 初期値
* item.element input 要素
*/
function onError( item )
{
alert( item.title + 'に数値を入力してください' );
item.element.focus();
}
</script>
</head>
<body onload="init();">
<!-- 計算機アプリはこの table に表示されます --->
<!-- この table の id と new anyCalculator() の第1引数に、計算機アプリのIDを指定します -->
<table id="calculator"></table>
</body>
</html>