11 2022 档案

摘要:最近在看《算法之美》,里面配套的代码是octave的,安装好了软件后,运行代码,发现提示没有发现package control 一、打开图形化的octave软件,通过帮助菜单--octave软件包,自动打开网页:https://gnu-octave.github.io/packages/,也可以在浏 阅读全文
posted @ 2022-11-29 00:46 叕叒双又 阅读(269) 评论(0) 推荐(0) 编辑
摘要: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 叕叒双又 阅读(84) 评论(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 叕叒双又 阅读(267) 评论(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 叕叒双又 阅读(515) 评论(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 叕叒双又 阅读(54) 评论(0) 推荐(0) 编辑