码迷,mamicode.com
首页 >  
搜索关键字:temp    ( 7776个结果
electron制作上位机软件篇(二)使用serialport进行串口通信
参考: https://serialport.io/docs/guide usage https://blog.csdn.net/chen_soldier/article/details/86848318 https://www.jianshu.com/p/65e2afa199f9 https:// ...
分类:其他好文   时间:2020-05-07 10:41:58    阅读次数:112
工单没回写
SELECT * FROM TEMP_MO_SCHEDULING WHERE MO_ID LIKE '5000342787%'; select * from ZTPP_FP_001@sap_sep where zclass='101001189'; select * from in_item whe ...
分类:其他好文   时间:2020-05-06 20:05:37    阅读次数:72
数学规律
已知两点坐标,求经过这两点的直线方程ax+by+c = 0或者y=kx+B已知:A(x1,y1),B(x2,y2)求:直线AB的a,b,c或者k,B temp = sqrt((x1-x2)**2 + (y1-y2)**2)a = (y2-y1) / tempb = (x1-x2) / tempc = ...
分类:其他好文   时间:2020-05-06 19:42:20    阅读次数:75
几种排序算法
所有排序都是从小到大进行排序 1插入排序 插入排序的思想主要是,将[a1,a2,a3,a4....ai.......an]前ai-1个序列看成有序的,然后用第ai个数与前面的数进行比较,找到位置进行插入 int i,j,temp;//a[len] for(i=1;i<len;i++){//假设a[0 ...
分类:编程语言   时间:2020-05-06 18:09:33    阅读次数:67
Vue 中 父子传值
父组件 <template> <div> <Son :sendToSonAttribute = "fromFatherMsg"></Son> <div> </template> <script> export default{ data(){ return { fromFatherMsg:'我是来自 ...
分类:其他好文   时间:2020-05-06 17:55:40    阅读次数:52
WPF 内部Template 动画板 无法冻结此 Storyboard 时间线树供跨线程使用
原文:WPF 内部Template 动画板 无法冻结此 Storyboard 时间线树供跨线程使用 解决此问题,需要一定的想象力。 换个思路即可 大体是 使用Tag或者别无用的可以输入数值的属性,或者附加属性也可以的。来绑定到你要动画的属性 当然这个过程中要使用转换器了 我给出一个关于Button ... ...
分类:编程语言   时间:2020-05-06 01:24:56    阅读次数:74
LC1403 非递增顺序的最小子序列
贪心算法 ...
分类:其他好文   时间:2020-05-05 23:16:39    阅读次数:54
十六进制与数字
0x01 ord() 定义: + 返回字符串的首个字符的ASCII值 语法:ord(string) 0x02 代码分析 GET方式传入值 传入的值每个数字不在1和9之间 并且传入的等于3735929054 把传入的数字3735929054转换成16进制 为deadc0de 参考链接: https:/ ...
分类:其他好文   时间:2020-05-05 19:51:54    阅读次数:118
E: could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporary unavailable) E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is an other process using it
. 问题详细提示如下: E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarly unavailable) E: Unable to acquire the dpkg frontend lock ...
分类:其他好文   时间:2020-05-05 11:01:45    阅读次数:57
数值分析实验之线性方程组的迭代求解(MATLAB实现)
详细实验指导见上上一篇,此处只写内容啦 实验内容: 求解如下4元线性方程组的近似解。 Gauss-Seidel迭代 A=[10,-1,2,0;-1,11,-1,3;2,-1,10,-1;0,3,-1,8]; b=[6;25;-11;15]; x=zeros(4,1); temp=zeros(4,1) ...
分类:其他好文   时间:2020-05-04 21:05:54    阅读次数:64
7776条   上一页 1 ... 57 58 59 60 61 ... 778 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!