/*库函数 1:数学函数库:math.h abs():绝对值; acos(),asin(),atan():cos,sin,tan的倒数 exp():指数的次幂 pow(x,y):x的y次幂 log():对数 rand():随机数 sqrt():平方根 sin(),cos(),tan():正弦,余弦, ...
分类:
其他好文 时间:
2018-08-28 20:18:05
阅读次数:
141
[1] Z. Zhou, Y. Huang, W. Wang, L. Wang, T. Tan, Ieee, See the Forest for the Trees: Joint Spatial and Temporal Recurrent Neural Networks for Video-ba... ...
分类:
Web程序 时间:
2018-07-29 12:54:48
阅读次数:
582
通用函数:能同时对数组中所有的元素进行运算的函数 常见通用函数 一元通用函数:abs, sqrt, exp,log,ceil,floor,rint/round,trunc,modf,isnan,isinf,cos,sin,tan 二元函数:add, substract, multiply,divid ...
分类:
其他好文 时间:
2018-07-09 23:17:00
阅读次数:
218
题目描述 给定一个字符串数组,将字母异位词组合在一起。字母异位词指字母相同,但排列不同的字符串。 示例: 输入: ["eat", "tea", "tan", "ate", "nat", "bat"], 输出: [ ["ate","eat","tea"], ["nat","tan"], ["bat"] ...
分类:
其他好文 时间:
2018-06-04 22:26:55
阅读次数:
138
1:cordic算法的基本公式 2:角度θ的部分取值(左)以及使用matalb得到的二进制值(右) 3:使用圆坐标系的伪旋转,可计算sin,cos,tan-1, 令x0=1/k=0.6073,y0=0,可以得到sin与cos值; 令x0=1,z0=0,可以得到tan-1; 令x0=1,z0=0,由循 ...
分类:
编程语言 时间:
2018-05-31 15:31:06
阅读次数:
203
通用函数:能同时对数组中所有元素进行运算的函数。 常见的通用函数: 一元函数:abs(绝对值), sqrt(开根号),exp,log,ceil,floor,rint/rount,trunc,modf,isnan,isinf,cos,sin,tan 二元函数:add,substract,multipl ...
分类:
其他好文 时间:
2018-05-02 16:12:30
阅读次数:
254
1 三角函数: 2 已知:三角形,分别有三个角,∠A,∠C,∠B,其中∠C为直角 3 ∠A,∠C,∠B的对边分别为a,c,b 4 sin = a / c 5 cos = b / c 6 tan = a / b 7 cot = b / a 8 sec = c / b 9 csc = c / a 10 ... ...
分类:
其他好文 时间:
2018-04-26 14:03:27
阅读次数:
139
Given an array of strings, group anagrams together. For example, given: ["eat", "tea", "tan", "ate", "nat", "bat"], Return: Note: All inputs will be i ...
分类:
其他好文 时间:
2018-03-10 11:59:25
阅读次数:
176
题目描述 输入一个字符串形式的表达式,该表达式中包括整数,四则运算符(+、-、*、/),括号,三角函数(sin(x)、cos(x)、tan(x)),底数函数(lg(x)、ln(x)),计算该表达式的值 输入 输入一个字符串形式的表达式,保证中间及最终结果不超出double的范围 输入一个字符串形式的 ...
分类:
其他好文 时间:
2018-03-01 20:06:23
阅读次数:
149
假设有如下数据,我们使用plot函数作图 R语言中默认函数 abs 绝对值 sqrt 平方根 exp e^x次方 log 自然对数 log2 log10 其他对数 sin cos tan 三角函数 sinh cosh tanh 双曲函数 poly 正交多项式 polyroot 多项式求根 assig ...
分类:
编程语言 时间:
2018-02-28 16:26:23
阅读次数:
460