github
文章平均质量分 95
或许,这就是梦想吧!
- And there you are, stubborn old man, sitting on your butt.
-- I'll show you sitting on my butt!
展开
-
在Python中实现对称矩阵
这一篇文章较早被作者写出,最早是在2016年7月24日。因为最近要用到对称矩阵,因此翻译过来以备后续回顾。在计算机科学中,对称矩阵可用于存储对象之间的距离或表示为无向图的邻接矩阵。与经典矩阵相比,使用对称矩阵的主要优势在于较小的内存需求。在这篇文章中,描述了这种矩阵的Python实现。介绍在对称矩阵中,是等同于的。由于这个特性,一个的对称矩阵需要存储的也仅仅是个元素...原创 2019-11-24 17:54:33 · 8174 阅读 · 1 评论 -
欢迎使用CSDN-markdown编辑器
一、初始设置$ git config --global user.name "your Github Name"$ git config --global user.email "Your_Email@example.com"这个命令会在 “ ~/.gitconfig ” 中存储:$ sudo cat ~/.gitconfig[user] email = 943164605@qq.com原创 2017-11-24 16:29:23 · 199 阅读 · 0 评论 -
文章标题
列出远程仓库 URL$ git remote -vList the current remotes (列出当前远程仓库)origin https://github.com/user/repo.git (fetch)origin https://github.com/user/repo.git (push)添加上游仓库URL$ git remote add upstream https://git原创 2017-11-25 10:36:03 · 269 阅读 · 0 评论