上一页 1 ··· 9 10 11 12 13
摘要: 1.文件准备: 先将扫描的pdf文件,每一章放到一个文件夹中,文件夹名字用章节名命名。 这样最终程序就能将章节名作为书签了,而不是默认将每页都生成书签。 【最新代码,更新PyPDF2后可用】用的3.8的python 2023.1.25更新 # -*- coding: utf-8 -*- ''' 本脚 阅读全文
posted @ 2022-04-19 21:41 asandstar 阅读(1821) 评论(1) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-04-14 19:12 asandstar 阅读(82) 评论(0) 推荐(0)
摘要: 题目内容:输入一个字符串,内有数字和非数字字符。例如:a123x456 17960 302tab5876。将其中连续的数字作为一个整数,依次存放到一维数组a中,例如123放在a[0],456放在a[1]……统计共有多少个整数,并输出这些数。 输入格式:输入一个字符串(允许空格)。 输出格式:第1行输 阅读全文
posted @ 2022-04-14 08:12 asandstar 阅读(1913) 评论(0) 推荐(0)
摘要: 在matlab中做Regularized logistic regression 原理: 我的代码: function [J, grad] = costFunctionReg(theta, X, y, lambda) %COSTFUNCTIONREG Compute cost and gradien 阅读全文
posted @ 2022-03-25 14:44 asandstar 阅读(125) 评论(0) 推荐(0)
摘要: 问题:在下载版的matlab中做coursera的machine learning里的ex2,做到 1.2.3 Learning parameters using fminunc 时出现optimoptions requires Optimization Toolbox 解决方法: 在matlab里 阅读全文
posted @ 2022-03-25 11:31 asandstar 阅读(2466) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13