s | String |
x | Gleitkommazahl |
y | Gleitkommazahl |
<html>
<head>
<script src="taramath.js"></script>
</head>
<body>
<div id="plot"></div>
<script>
Plot.init("plot", 600, 300);
Plot.label("Sinus", 2.6, 0.8);
Plot.label("Kosinus", 1.8, 0.2);
Plot.func("sin(x)", "cos(x)", 0, 6.28);
</script>
</body>
</html>