上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 124 下一页
摘要: 由于比较简单,只靠代码的注释就差不多了: 1 #导入需要的库import numpy as np 2 import matplotlib.pyplot as plt 3 4 #定义变量和函数x = np.arange(-100, 100, 0.001) 5 y = x**3/(3*x+1) 6 7 阅读全文
posted @ 2022-12-15 09:17 叕叒双又 阅读(153) 评论(0) 推荐(0)
摘要: 零、许可证: license译为许可证,也可作为开源协议,它可以将自己创作的东西,授权给他人使用,并约定了使用者可以有的权利和必须遵从的义务。现在很多优秀的开源项目都有设置license,不同的license所约束的条件也不同。因此开源不等于免费,开源也不等于没有约束。对于大型的软件可能都有专门的律 阅读全文
posted @ 2022-12-13 23:08 叕叒双又 阅读(399) 评论(0) 推荐(0)
摘要: 一、符号函数的入门: 1、符号函数使用准备,导库 from sympy import * 2、定义符号 x,y,z = symbols('x y z') 3、应用符号 e = cos(x) + 1 4、画符号函数的图 plot(e) 结果: 二、符号函数的其他应用 1、符号替换,将变量x替换为z e 阅读全文
posted @ 2022-12-13 16:19 叕叒双又 阅读(1141) 评论(0) 推荐(0)
摘要: 1. 安装manjaro就不说了; 2. 下载坚果云二进制组件 wget https://www.jianguoyun.com/static/exe/installer/nutstore_linux_dist_x64.tar.gz -O /tmp/nutstore_bin.tar.gz 3. 解压缩 阅读全文
posted @ 2022-12-13 15:12 叕叒双又 阅读(422) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-12-12 19:15 叕叒双又 阅读(4) 评论(0) 推荐(0)
摘要: 1、download floris https://github.com/NREL/floris/archive/refs/tags/v2.2.1.tar.gz git clone -b main https://github.com/NREL/floris.git pip install -e f 阅读全文
posted @ 2022-12-11 11:57 叕叒双又 阅读(38) 评论(0) 推荐(0)
摘要: 知乎上的一篇文章 神经网络15分钟入门!足够通俗易懂了吧 - 知乎 (zhihu.com) 阅读全文
posted @ 2022-12-11 07:48 叕叒双又 阅读(59) 评论(0) 推荐(0)
摘要: no yay -S com.tencent.meeting.deepin no TencentMeeting_0300000000_3.12.0.400_x86_64_default.publish.deb yay -S wemeet-bin 阅读全文
posted @ 2022-12-10 20:37 叕叒双又 阅读(55) 评论(0) 推荐(0)
摘要: 格局: 我站在一楼, 有人骂我, 我听了很生气。 我站在十楼, 有人骂我, 我听不清, 还以为他在跟我打招呼。 我站在一百楼, 有人骂我, 我放眼望去,(连嘴动都看不见,) 只有尽收眼底的风景无限。 高度不够, 看到的都是问题, 格局太小, 纠结的便都是鸡毛蒜皮。 象恋爱一样工作, 象有钱人一样过活 阅读全文
posted @ 2022-12-05 12:31 叕叒双又 阅读(470) 评论(0) 推荐(0)
摘要: %samp3_27.m r=linspace(0,2*pi,60); [u,v]=meshgrid(r); x=(8+3*cos(v)).*cos(u); y=(8+3*cos(v)).*sin(u); z=3*sin(v); plot3(x,y,z); title('三维绘图'); xlabel( 阅读全文
posted @ 2022-12-03 23:45 叕叒双又 阅读(116) 评论(0) 推荐(0)
摘要: 最近在看《算法之美》,里面配套的代码是octave的,安装好了软件后,运行代码,发现提示没有发现package control 一、打开图形化的octave软件,通过帮助菜单--octave软件包,自动打开网页:https://gnu-octave.github.io/packages/,也可以在浏 阅读全文
posted @ 2022-11-29 00:46 叕叒双又 阅读(336) 评论(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 叕叒双又 阅读(89) 评论(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 叕叒双又 阅读(295) 评论(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 叕叒双又 阅读(590) 评论(0) 推荐(0)
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 124 下一页