#Mat

iOS CoreAnimate

iOSCoreAnimate东西比较多,这篇笔记是入门用的,主要讲述的是静态的图形绘画处理问题。(当然动画也只是一小部分)理解相关的概念问题: 参考资料 http://segmentfault.com/a/1190000000390012 (非常好的文章,受益匪浅,关键词:离屏渲染)工具:...
代码星球 ·2020-05-23

requests.exceptions.SSLError: hostname '127.0.0.1' doesn't match None

http://stackoverflow.com/questions/33429453/python-requests-ssl-hostname-doesnt-match-errorhttp://www.cnblogs.com/tk091/p/3671160.html...

Math对象小笔记

 来,总结下Math对象的常用方法和属性1.E 自然对数的底数Math.E;//2.7182818284590452.PI 圆周率Math.PI;//3.1415926535897933.ceil 对数进行上舍入。Math.ceil(2.1);//34.floor 向下...
代码星球 ·2020-05-22

C# IFormattable 接口重写

1publicclassRacer:IComparable<Racer>,IFormattable2{3publicintId{get;privateset;}4publicstringFirstName{get;set;}5publicstringLastName{get;set;}6publicstri...
代码星球 ·2020-05-22

Animate.css

使用过几次Animate.css,现在来记录一下用法,方便以后直接使用首先是官网地址:https://daneden.github.io/animate.css/非常好用的CSS库,只需要引入animate.css<linkrel="stylesheet"href="animate.min.css">并且为...
代码星球 ·2020-05-21

如何解决python 图表中文显示乱码问题(matlplotlib 包)

目前搜到的是,下载一个字体到程序路径,设置成默认字体。  https://blog.csdn.net/irene_loong/article/details/68955485 #图表显示中文设置importmatplotlibasmpl#新增包frommatplotlib.tickerim...

Python3.6.5 Win10安装numpy,scipy,scikit-learn,matplotlib

https://www.python.org/downloads/release/python-365/选择windows64位版本包下载,安装首页勾选“addtopath”,第二页安装选项的pip一般默认勾选确认即可,直接安装到底,成功后,Win+Rcmd下输入python显示版本,输入pip...

FormatMessage与GetLastError配合使用,排查windows api调用过程中的错误

前一段时间在学习windowsapi调用过程中,遇到过一些调用错误或者程序没能显示预期的结果,或者直接出现vc运行时错误。这对新手来说是司空见惯的事,因为不太熟悉难免会出错,出错的信息如果能显示很好的关键字到网上搜索一下倒是很好的,例如返回错误代码:2。你可以使用Visualstudio套件里面的ErrorLookup...

[翻译]C#.我该如何分析和转换日期时间的到RFC 822的日期,时间格式(How do I parse and convert DateTime’s to the RFC 822 date-time format?)

转载自:https://stackoverflow.com/questions/284775/how-do-i-parse-and-convert-datetime-s-to-the-rfc-822-date-time-format问:RFC822日期-时间被很多应用到很多规范中,比如RSS格式 ;在.NET...

javax.sound.sampled.AudioFormat.java

ViewingtheJavaCode javax.sound.sampled.AudioFormat.java line 252:frameSize((sampleSizeInBits+7)/8)*channelsWhenisDifferentto http://soundfil...
代码星球 ·2020-05-14

Detect image format in Java(使用java探测图片文件格式)

原理,每中格式的图片都有标准的文件头,这些头都是固定不变的。 转载自:http://jubin.tech/articles/2018/12/05/Detect-image-format-using-java.html通过文件名后缀也能一定程度上反应文件的格式,当时有些软件(比如钉钉办公软件)生成的图片后缀其实...
代码星球 ·2020-05-14

java.math.BigDecimal cannot be cast to java.lang.Integer

问题来源:  在数据库中查询一个列表的长度时,需要转换为Integer类型,我刚开始直接转就报错了。因为在数据库中用count(*)聚合函数返回的值类型为BigDecimal,不能直接转换为Integet类型, 解决办法:  先转换为String类型,再转为Integer类型。 ...

java.math.BigDecimal cannot be cast to java.lang.String

从数据库总查询出的count(*)函数统计的值,类型转换方法:          Map<String,Integer>map=newHashMap<String,Integer>();     List<Object[]>list=query.list();for(Object[]...

matlib实现logistic回归算法(序一)

数据下载:http://archive.ics.uci.edu/ml/datasets/Adult数据描述:http://archive.ics.uci.edu/ml/machine-learning-databases/adult/adult.names这是针对美国某区域的一次人口普查结果,共32561条数据。具体字...

matlib实现梯度下降法(序一)

数据来源:http://archive.ics.uci.edu/ml/datasets/Combined+Cycle+Power+Plant数据描述:有四个输入特征,这些数据来自电厂,这四个特征和电量输入有关系,现在通过线性回归求它们之间关系的模型参数。-温度,Temperature(T)intherange1.81°...
首页上一页...7273747576...下一页尾页