- 博客(640)
- 资源 (4)
- 收藏
- 关注
原创 查看CentOS开机自启动项目
1、chkconfig --add mysql2、systemctl list-unit-files关于二者的区别,可参考:https://blog.csdn.net/cds86333774/article/details/51165361
2020-02-24 08:31:55 1001
原创 Oracle正则表达式
https://www.cnblogs.com/gkl0818/archive/2009/02/12/1389521.html
2020-02-13 15:02:51 194
原创 Python中的random模块
1、random.shuffleimport numpy as npimport randoma = np.arange(10)print(a)print("----------------------")random.shuffle(a)print(a)https://www.cnblogs.com/yd1227/archive/2011/03/18/1988015.ht...
2020-02-05 21:31:02 138
原创 用Python模拟正态分布
import numpy as np# from numpy import piimport matplotlib.pyplot as pltmu, sigma = 2, 0.5s = np.random.normal(mu, sigma, 1)while 1: v = np.random.normal(mu, sigma, 1) s = np.append(s, v...
2020-02-04 16:48:48 1915
原创 利用matplotlib将矩阵画成三维图
import cv2 as cvimport numpy as npimport matplotlib.pyplot as pltfrom matplotlib import cmfrom mpl_toolkits import mplot3dcap = cv.VideoCapture(0)cpframe = Nonewhile True: ret, frame = ca...
2020-02-04 12:07:31 5342 1
原创 python matplotlib 图像显示问题
https://blog.csdn.net/qq_41670192/article/details/80097211import mathimport cv2 as cvimport matplotlib.pyplot as plt#读取图像,支持 bmp、jpg、png、tiff 等常用格式img = cv.imread("E:/CV/opensource/opencv_c...
2020-01-27 22:02:52 198
原创 How to build OpenCV library and debug it in VS2010?
http://www.anlak.com/2013/02/build-debug-opencv-vs2010.html
2020-01-26 19:40:37 136
原创 直线段检测算法
转自:https://blog.csdn.net/weixin_42647783/article/details/81200534
2020-01-13 22:48:59 212
原创 test2
"""network2.py~~~~~~~~~~~~~~An improved version of network.py, implementing the stochasticgradient descent learning algorithm for a feedforward neural network.Improvements include the addition o...
2019-12-10 23:18:03 244
原创 test
# %load network.py"""network.py~~~~~~~~~~IT WORKSA module to implement the stochastic gradient descent learningalgorithm for a feedforward neural network. Gradients are calculatedusing back...
2019-12-09 22:44:51 128
原创 用帆软实现漏空饼图
参考文献:https://help.finereport.com/doc-view-1308.html帆软8.0,10.0均支持
2019-10-14 10:13:30 617
原创 Tableau开发技巧
1、制作饼图https://help.tableau.com/current/pro/desktop/zh-cn/buildexamples_pie.htm
2019-09-19 10:05:27 305
原创 使用参数创建开始日期和结束日期筛选器
https://kb.tableau.com/articles/howto/creating-a-filter-for-start-and-end-dates-parameters?lang=zh-cn
2019-08-29 11:39:08 1222
原创 基于帆软开发坐标轴组合图
转自:https://help.finereport.com/doc-view-1557.html?tdsourcetag=s_pcqq_aiomsg
2019-08-09 10:34:30 1040
原创 Linux关闭防火墙并设置开机启动/不启动
转自:https://blog.csdn.net/qq_41116956/article/details/82767418
2019-08-05 15:18:43 590
原创 帆软通过js删除数据库表中的数据
contentPane.curLGP.getCellValue(1, 0);//获取文本框控件所在单元格的值 var yea=contentPane.curLGP.getCellValue("C1");var mon=contentPane.curLGP.getCellValue("E1");var tmp =String.format("SQL('hr', 'DELETE FROM ...
2019-07-31 16:41:40 5680
原创 帆软报表(finereport)JS实现点击参数面板按钮显示或隐藏数据
转自:https://www.cnblogs.com/Williamls/p/10824055.html
2019-07-31 16:37:59 3797
转载 Oracle中REGEXP_SUBSTR及其它支持正则表达式的内置函数小结
转自:https://www.cnblogs.com/softidea/p/5208128.html
2019-07-02 18:28:38 262
原创 帆软填报通过JS清空数据库表
var a = FR.remoteEvaluate("SQL('db', 'truncate TABLE tableName',1)");if(a == 0){ FR.Msg.toast('表清空成功');}else{ FR.Msg.toast('表清空失败');}
2019-07-01 14:07:19 3191 5
转载 Oracle中REGEXP_SUBSTR及其它支持正则表达式的内置函数小结
转自:https://www.cnblogs.com/softidea/p/5208128.html
2019-06-21 15:16:04 929
转载 基于Tableau创建帕累托图
转自:https://onlinehelp.tableau.com/current/pro/desktop/zh-cn/pareto.htm
2019-06-18 17:41:39 680
转载 An error occurred: Sorry the page you are looking for is ... nginx upstream timed out 10060错误解决
现象描述:转自:https://blog.csdn.net/u010375456/article/details/82631940
2019-06-14 11:43:16 3383
原创 SAP常用TCode
1、标准T-Code序号 T-Code 描述 1 ME13 查看信息记录 2 ME03 查看货源清单 3 MB52 查看库存 4 vl06o 查看外向交货清单 5 vl03n 显示出库交货(查看外向交货单) 6 bp 维护商业伙...
2019-06-12 15:52:02 5694
原创 帆软报表制作技巧
1、增加日期过滤条件select *from table1where field1 > to_date('${rq}','yyyy-MM-dd')2、在SQL中使用单选框参数${if($checkBox0," and T.status in(0, 1)","")}3、SQL中过滤非中文REGEXP_LIKE (T1.bm, '[\\u4e00-\\u9...
2019-06-12 13:50:33 689
转载 SQLServer JDBC 驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server 建立安全连接
转自:https://blog.csdn.net/chch87/article/details/86504581
2019-05-14 09:13:10 8921
转载 Oracle隐式类型转换
当字符串类型和数值类型做比较时,oracle会将字符串类型转换为数值类型转自:https://www.cnblogs.com/ZiYangZhou/p/8290043.html
2019-03-06 16:55:02 294
转载 ORACLE定时任务没有执行原因
转自:https://blog.csdn.net/u012972294/article/details/79969399
2019-03-01 08:33:07 1985
原创 Could not execute job specified in a repository since we're not connected to one
Kitchen.bat /rep repo /file E:\kettle\repo\entry.kjb /level Basic /logfile E:\kettle\schedule\logs\entry%filename%.log参考文件:https://blog.csdn.net/david412306524/article/details/50929962/
2019-02-13 18:37:09 677
转载 Oracle存储过程是否需要些Commit及调用方式
1、关于Oracle存储过程中是否需要写commit的问题https://blog.csdn.net/javaee_sunny/article/details/775085022、Oracle中执行存储过程call和exec区别https://blog.csdn.net/zengmingen/article/details/51364691...
2019-02-11 14:53:13 2155
转载 Oracle自定义函数
转自:https://blog.csdn.net/m0_37608982/article/details/79071218
2019-01-16 13:34:52 878
转载 oracle 给表授权grant
https://blog.csdn.net/weikaiy945/article/details/81478428
2019-01-14 11:40:05 1812
转载 SAP各模块介绍
https://blog.csdn.net/afandaafandaafanda/article/details/47310417
2019-01-14 08:50:20 2963
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人