Loading

摘要: 将前缀修改成国内镜像前缀 推荐使用中科院的 arxiv 镜像: http://xxx.itp.ac.cn 访问方法: 将 arxiv.org 替换成 xxx.itp.ac.cn 例如: https://arxiv.org/abs/1901.07249 改为 http://xxx.itp.ac.cn/ 阅读全文
posted @ 2021-06-20 20:04 _yhwu 阅读(970) 评论(0) 推荐(0) 编辑
摘要: C语言编译 gcc -o test test.c C++编译 g++ -o test test.cpp 注:如需使用C++11标准,则可以加上 -std=c++11 // Cgcc -std=c++11 -o test test.c // C++g++ -std=c++11 -o test test 阅读全文
posted @ 2021-06-11 16:36 _yhwu 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 在实验中要用到C11标准中的<std::future>异步执行,编译时出现如下错误 .\Dev-Cpp\MinGW64\lib\gcc\x86_64-w64-mingw32\4.9.2\include\c++\bits\c++0x_warning.h [Error] #error This file 阅读全文
posted @ 2021-06-11 16:31 _yhwu 阅读(2158) 评论(0) 推荐(0) 编辑
摘要: Linux内核源码下载地址 官网链接 https://www.kernel.org/ 国内下载(推荐) http://ftp.sjtu.edu.cn/sites/ftp.kernel.org/pub/linux/kernel/ 选择对应的版本下载即可 阅读全文
posted @ 2021-06-08 10:15 _yhwu 阅读(876) 评论(0) 推荐(0) 编辑
摘要: windows环境下的jar可执行文件运行方法(针对应用程序) 1. 命令行执行 win+R>cmd>进入控制台界面 输入:java -jar filename.jar 2. BAT系统文件快捷打开 将 java -jar filename.jar pause 写入filename.bat,保存 双 阅读全文
posted @ 2021-05-26 11:23 _yhwu 阅读(494) 评论(0) 推荐(0) 编辑
摘要: Excel 表格内容转置 1. 选择并复制需要转置的内容 2.点击空白单元格,右键->选择性粘贴 3.勾选“转置”前的方框,确认 阅读全文
posted @ 2021-05-22 17:25 _yhwu 阅读(1774) 评论(0) 推荐(0) 编辑
摘要: 1.pd.read_excel函数 pd.read_excel(io, sheetname=0,header=0,skiprows=None,index_col=None,names=None, arse_cols=None,date_parser=None,na_values=None,thous 阅读全文
posted @ 2021-04-26 15:36 _yhwu 阅读(482) 评论(0) 推荐(0) 编辑
摘要: python中创建目录文件夹 需要导入os,主要调用三个函数 os.path.exists(path) 判断一个目录path是否存在 os.makedirs(path) 多层创建目录path os.mkdir(path) 创建目录path import os path = 'D:/data/' if 阅读全文
posted @ 2021-04-26 11:03 _yhwu 阅读(2901) 评论(0) 推荐(0) 编辑
摘要: MATLAB打开后在命令行中报错 Exception "java.lang.ClassNotFoundException: com/intellij/codeInsight/editorActions/FoldingData"while constructing DataFlavor for: ap 阅读全文
posted @ 2021-04-19 10:52 _yhwu 阅读(2935) 评论(1) 推荐(1) 编辑
摘要: # Encoding: utf-8 ''' author: yhwu version: 2021-04-19 function: numpy array write in the excel file ''' import numpy as np import pandas as pd # defi 阅读全文
posted @ 2021-04-19 10:47 _yhwu 阅读(6070) 评论(0) 推荐(0) 编辑