猿问

python中有没有类似sqrtm的函数?

python中有没有类似sqrtm的函数


神不在的星期二
浏览 1262回答 3
3回答

蝴蝶刀刀

由于Python语言的动态类型特性,在集成开发环境或编辑工具编码时,给予的代码提示及自动完成功能不象静态语言工具(比如使用VisualStudio开发C#)那样充分。实现开发过程中,我们借助于相关插件或使用Python内置函数"help()”来查看某个函数的参数说明,以查看内置函数sorted()为例:12345678910>>> help(sorted)Help on built-in function sorted in module builtins: sorted(iterable, key=None, reverse=False) Return a new list containing all items from the iterable in ascending order. A custom key function can be supplied to customise the sort order, and the reverse flag can be set to request the result in descending order. >>>

白猪掌柜的

用迭代法求某数a的平方根。已知求平方根的迭代公式为:x&nbsp;n+1&nbsp;= (xn&nbsp;+ a / xn) / 2要求前后两次求出的差的绝对值小于10-5。算法如下:① 设定一个x的初值x0&nbsp;; (在如下程序中取x0=a/2, 通过迭代公式求出x1,可以肯定与真正的平方根相比,误差很大。)② 用上述公式求出x的下一个值 x1&nbsp;;③ 如此继续下去,直到前后两次求出的x值(x&nbsp;n+1和xn)满足以下关系:|x&nbsp;n+1-xn|<10-5&nbsp;.扩展资料:样例:/*&nbsp;sqrt&nbsp;example&nbsp;*/#include&nbsp;<stdio.h>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;/*&nbsp;printf&nbsp;*/#include&nbsp;<math.h>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;/*&nbsp;sqrt&nbsp;*/&nbsp;int&nbsp;main&nbsp;(){double&nbsp;param,&nbsp;result;param&nbsp;=&nbsp;1024.0;result&nbsp;=&nbsp;sqrt&nbsp;(param);printf&nbsp;("sqrt(%f)&nbsp;=&nbsp;%f\n",&nbsp;param,&nbsp;result&nbsp;);return&nbsp;0;}
随时随地看视频慕课网APP

相关分类

Python
Java
我要回答