Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

学习自 https://zhuanlan.zhihu.com/p/484348911 定义梯度 拉普拉斯算子 图拉普拉斯公式给定一个有n个顶点的图G=(V,E),其拉普拉斯矩阵被定义为L=D-A,D其中为图的度矩阵,A为图的邻接矩阵。 推导 (4) 拉普拉斯矩阵中的第i行反应了第i个节点在对其他所有节点产生扰动时所产生的增益累积。图拉普拉斯反映了当我...

https://zh.wikipedia.org/zh-cn/%E5%A4%9A%E5%B0%8D%E6%95%B8%E5%87%BD%E6%95%B8

重定向https://stackoverflow.com/questions/47719965/how-to-redirect-stdout-to-a-file-and-then-restore-stdout-back 举例#include <iostream> #include <unistd.h> #include <fcntl.h> using na...

宏定义函数https://gcc.gnu.org/onlinedocs/gcc-7.3.0/gcc.pdf搜索__VA_ARGS__ #define debug(format, ...) fprintf (stderr, format, __VA_ARGS__) Here ... is a variable argument. In the invocation of such a mac...

参考教程https://terminalroot.com/how-to-hide-input-via-cli-with-cpp/?ref=morioh.com&utm_source=morioh.com man信息#include <termios.h>https://pubs.opengroup.org/onlinepubs/7908799/xsh/termios.h....

自动补全,添加历史https://blog.51cto.com/u_3078781/3287204 自定义换行符https://www.igiftidea.com/article/12962763210.html 官方文档https://web.mit.edu/gnu/doc/html/rlman_2.html 快捷键使用(该库支持的)https://flyyang.me/2017/05/0...

写得非常好的官方文档 https://git-scm.com/book/zh/v2/%E8%B5%B7%E6%AD%A5-%E5%88%9D%E6%AC%A1%E8%BF%90%E8%A1%8C-Git-%E5%89%8D%E7%9A%84%E9%85%8D%E7%BD%AE 设置当前git仓库提交的用户名和邮箱git config user.name yuanzhiqiu git conf...
tool

https://blog.csdn.net/springlustre/article/details/101177282

本例中,下载源码到$HOME/built/目录下,安装到$HOME/local/gcc-9.4.0目录下 1. 获取源码在预计放源码的目录下,比如$HOME/built/ wget -c http://ftp.gnu.org/gnu/gcc/gcc-9.4.0/gcc-9.4.0.tar.gz tar -zxvf gcc-9.4.0.tar.gz cd gcc-9.4.0 2. 下载依赖g...

1. 获取源码wget -c --no-check-certificate http://sourceforge.net/projects/boost/files/boost/1.56.0/boost_1_56_0.tar.gz #下载源码 tar -xzvf boost_1_56_0.tar.gz #解压源码 cd boost_1_56_0 #进入源码目录 2. 修改bootstrap....