方程的解 方程$Ax = b$的解可以表示为:特解 + 通解的形式。 求特解的方法为:将所有自由变量的值设为$0$ 解的一般性讨论 设$A$为一个$m \times n$矩阵,\(R(A) = r\),显然$r \leq \min(m,n)$。 若$r = n$,则称$A$是一个列满秩矩阵;若$r ...
分类:
其他好文 时间:
2021-03-18 14:02:24
阅读次数:
0
fish下使用alias(abbr) f饭饭f关注 0.0962019.03.29 20:10:18字数 119阅读 1,256 由于fish下没有办法使用source ~/.bashrc来加载配置,所以在其中设置的alias也没有办法使用。但是fish有自己的abbr以达到同样的效果进入fish全 ...
分类:
其他好文 时间:
2021-03-17 14:21:17
阅读次数:
0
最近业余时间浏览技术文章的时候,看到了一篇关于语音朗读的文章:Use JavaScript to Make Your Browser Speak(用Javascript让你的浏览器说话),文章中提到可以通过speechSynthesis实现让现代浏览器语音朗读指定的内容,这激发了我的好奇心去探索了一 ...
分类:
其他好文 时间:
2021-03-16 14:02:16
阅读次数:
0
基础 基础语法 $(selector).action()$ 文档就绪事件 <script> $(document).ready(function(){ // 开始写 jQuery 代码... }); //简洁写法 $(function(){ // 开始写 JQuery 代码 }) </script> ...
分类:
Web程序 时间:
2021-03-16 13:49:39
阅读次数:
0
#include <cmath> #include <queue> #include <cstdio> #include <vector> #include <cstring> #include <iostream> #include <algorithm> #define int long lon ...
分类:
其他好文 时间:
2021-03-16 13:45:35
阅读次数:
0
数据应用,是真正体现数仓价值的部分,包括且又不局限于 数据可视化、BI、OLAP、即席查询,实时大屏,用户画像,推荐系统,数据分析,数据挖掘,人脸识别,风控反欺诈,ABtest等等 OLAP(On-Line Analytical Processing):在线分析处理,主要用于支持企业决策管理分析。 ...
分类:
其他好文 时间:
2021-03-16 11:54:33
阅读次数:
0
6.定位 6.1 相对定位 6.2 绝对定位 6.3 z-index <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>默认情况</title> <style> div{ margin: 10px; paddi ...
分类:
Web程序 时间:
2021-03-15 10:57:59
阅读次数:
0
gnu http://www.gnu.org/software/binutils/ The GNU Binutils are a collection of binary tools. The main ones are: ld - the GNU linker. as - the GNU asse ...
分类:
其他好文 时间:
2021-03-11 20:36:58
阅读次数:
0
关于排序的原文网址:https://algs4.cs.princeton.edu/21elementary/ 选择排序(Selection sort) 思想 遍历数组,设置最小值的索引为 0, 如果取出的值比当前最小值小,就替换最小值索引,遍历完成后,将第一个元素和最小值索引上的值交换。 如上操作后 ...
分类:
编程语言 时间:
2021-03-11 19:32:43
阅读次数:
0
题目描述 1065 A+B and C (64bit) (20 分) Given three integers A, B and C in [?], you are supposed to tell whether A+B>C. Input Specification: The first line ...
分类:
其他好文 时间:
2021-03-10 13:11:02
阅读次数:
0