用于重新创建多项式根计算器的良好脚本语言/框架
我只是想知道最好的在线脚本语言是什么用于“简单”数学计算,例如求解第二次、第三次或第四次多项式的根。
例如,创建一个像 此处 那样的小型网络“小程序”,它将输入的值插入到文本框并将它们作为变量输入到“二次方程”中并求解两个 x 值。
纯 JavaScript 是为此使用的最佳脚本语言吗? IMO,实际上没有必要将其放在服务器端。
I was just wondering what the best online scripting language is to use for "simple" mathematical calculations, like solving for roots in 2nd 3rd or 4th degree polynomials.
For example, creating a little web "applet" like the one found here which inserts the values inputed into the text boxes and inputs them as variables into the "quadratic equation" and solves for two x values.
Is plain JavaScript the best scripting language to use for this? IMO, there's really no need for this to be server side.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您打算在网页中执行此操作,那么 Javascript 几乎是您唯一的选择。您可以编写一个Java小程序,但这很痛苦并且需要人们安装Java浏览器插件。
If you're planning to do this in a web page, pretty much your only choice is Javascript anyway. You could write a Java applet, but that's a pain and requires that people install the Java browser plugin.