上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 118 下一页
摘要: All supported software are mssing [/usr/bin/sushi,/usr/bin/gloobus-preview]. Please install either one or specify a custom view command instead. 阅读全文
posted @ 2022-11-06 22:18 叕叒双又 阅读(82) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-11-04 21:39 叕叒双又 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 在matlab中习惯了使用syms符号函数,octave中没有这个函数,需要安装个包,只要在octave的命令行中输入以下三个命令即可: 1、pkg install -forge symbolic For information about changes from previous version 阅读全文
posted @ 2022-11-03 23:15 叕叒双又 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 代码1:z = sqrt(x^2 + y^2) close all x = -6:0.05:6; [X, Y]=meshgrid(x); Z = sqrt(X.^2 + Y.^2); mesh(X, Y, Z) 如图1: 代码2:z = 2 - x^2 - y^2 clear all x=-5:0. 阅读全文
posted @ 2022-11-03 22:40 叕叒双又 阅读(426) 评论(0) 推荐(0) 编辑
摘要: matlab下安装使用livsvm各种的不顺利,速度也有点太拉跨,与机器配置严重不符合,决心试试octave: 1、安装octave: sudo pacman -S octave 2、下载libsvm https://www.csie.ntu.edu.tw/~cjlin/libsvm/ ,下载lib 阅读全文
posted @ 2022-11-01 17:36 叕叒双又 阅读(46) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-10-31 22:37 叕叒双又 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 两个好用的同义词替换网址thesaurus和powerthesaurus 1、https://zh.powerthesaurus.org/ 2、https://sourceforge.net/projects/thesaurus/ 20221030无法访问 3、https://www.thesaur 阅读全文
posted @ 2022-10-30 11:02 叕叒双又 阅读(551) 评论(0) 推荐(0) 编辑
摘要: 代码非常简单: 1 #include <stdio.h> 2 #include <termios.h> 3 #include <unistd.h> 4 #include <sys/types.h> 5 #include <sys/time.h> 6 7 int kbhit(void){ 8 stru 阅读全文
posted @ 2022-10-30 09:26 叕叒双又 阅读(327) 评论(0) 推荐(0) 编辑
摘要: keycode 8 = BackSpace BackSpacekeycode 9 = Tab Tabkeycode 12 = Clearkeycode 13 = Enterkeycode 16 = Shift_Lkeycode 17 = Control_Lkeycode 18 = Alt_Lkeyc 阅读全文
posted @ 2022-10-30 08:44 叕叒双又 阅读(49) 评论(0) 推荐(0) 编辑
摘要: Theory is when you know everything but nothing works. Practicee is when everything works but no one knows why. in out lab, theory and practice are com 阅读全文
posted @ 2022-10-29 22:41 叕叒双又 阅读(44) 评论(0) 推荐(0) 编辑
摘要: Octave的默认编辑器一般是emacs,该编辑器虽然强大,但是对于新手来说并不友好,并且我在macOS中使用时,发现Octave中的emacs的快捷键有失效的现象,因此为了避免麻烦,自己修改了Octave的默认编辑器,采用如下修改方法能够一劳永逸,每次在终端启动Octave都能够将编辑器改为Vim 阅读全文
posted @ 2022-10-29 11:36 叕叒双又 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 1、https://docs.qmk.fm/#/zh-cn/ 2、https://kbfirmware.com/ 3、http://www.keyboard-layout-editor.com/#/ 4、qmk软件: 阅读全文
posted @ 2022-10-29 10:12 叕叒双又 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 1. 下载安装Zoterozotero官方下载网址安装方法和普通软件相同,一路点击,选择 安装目录,再安装即可。2. 下载安装插件茉莉花(Jasminum)(下载caj时转换成pdf,需要pdftk server)zotero connector(必装,从网页上抓取文献)Zotfile(批量重命名) 阅读全文
posted @ 2022-10-29 10:05 叕叒双又 阅读(1566) 评论(0) 推荐(0) 编辑
摘要: 转自:Fengz,并注明出处: https://sync.sh ,原文:https://sync.sh/rmk-handwired-40percent 有一个小伙伴做了一个视频到B站,可以点这里。 首先,先感谢 老杨 无私地给我带路。 因为市面上的键位布局都不太满意,主要是喜欢这个创作的过程,所以就 阅读全文
posted @ 2022-10-29 10:03 叕叒双又 阅读(934) 评论(0) 推荐(0) 编辑
摘要: Linux下 cat也是使用非常频繁的一个工具了,但是输出比较单一:大佬就开发出了 ccat 这个命令。ccat 与 cat 非常相似,但是使用ccat命令,显示的代码内容会带有颜色,这对于码农来讲非常友好。目前,ccat 支持 JavaScript,Java,Ruby,Python,Go,C 和 阅读全文
posted @ 2022-10-29 08:48 叕叒双又 阅读(59) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 118 下一页