Stella981 Stella981
3年前
Eigen库
MatrixXd表示任意size的矩阵,元素类型为double;VectorXd表示任意size的向量,元素类型为double.//创建31的向量v,并赋值为1,2,3VectorXdv(3);v<<1,2,3;使用固定尺寸的Matrix,Vector相比于可变尺寸的Matrix,Vector,例如Matri
Wesley13 Wesley13
3年前
C++经典机试题目
1\.表达式求值中缀转后缀include<iostreaminclude<stackusingnamespacestd;intPriority(charoper){switch(oper){case'(':return
Stella981 Stella981
3年前
Python:UTF
!/usr/bin/envpythoncoding:utf8UTF8转换成GBK编码tempdecodeencode原理就是把UTF8转换成万国码,再给万国码进行编码转换成GBK,在python2.x里面这么用"""给变量temp
Stella981 Stella981
3年前
Coroutine in Java协程
转自 https://segmentfault.com/a/1190000006079389?fromgroupmessage&isappinstalled0说到协程(Coroutine)
Stella981 Stella981
3年前
LeetCode 1253. 重构 2 行二进制矩阵
题目链接:https://leetcodecn.com/contest/weeklycontest162/problems/reconstructa2rowbinarymatrix/(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fleetcodecn.com%2Fco
Stella981 Stella981
3年前
JS(react)里面Json、String、Map、Object之间的转换
importReact,{Component}from'react'classJsonUtilsextendsReact.Component{/字符串转json/staticstringToJson(data){return
Stella981 Stella981
3年前
Blob分析
文章转自微信公众号:机器视觉那些事\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\公众号:机器视觉那些事儿\\\\\\
Wesley13 Wesley13
3年前
Java类型转换工具类(十六进制—bytes互转、十进制—十六进制互转,String—Double互转)
/数据类型转换工具类@authorcyf/publicclassNumConvertUtil{/bytes转16进制字符串@parambArray
Stella981 Stella981
3年前
Python NumPy学习总结
一、NumPy简介其官网是:http://www.numpy.org/(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fwww.numpy.org%2F)NumPy是Python语言的一个扩充程序库。支持高级大量的维度数组与矩阵运算,