This commit is contained in:
2023-07-26 00:46:01 +08:00
parent c7cbcd09af
commit 822fa7e626
212 changed files with 5687 additions and 5687 deletions

View File

@@ -0,0 +1,41 @@
% This code is supported by the website: https://www.guanjihuan.com
% The newest version of this code is on the web page: https://www.guanjihuan.com/archives/766
%matlab%
%ctrl+Rctrl+T
clc; %clc
clear all; %clear all
clf; %clf
aa=1 %;,
bb=2; %;
cc1=zeros(2,3) %zeros()
cc2=eye(3,3) %
%
matrix1=[3,3;3,3] %1
matrix2=[2,0;0,2]
matrix_product_1=matrix1*matrix2 % *
matrix_product_2=matrix1.*matrix2 % .*
%
for i0=1:0.5:2 %forenda:b:cacb
for_result=i0+1i %imatlabi
end
%
if aa~=1 %matlab~===
dd=100
else
dd=300
end
matrix=[2,3;5,7]
%
[V,D]=eig(matrix) %matlabVD
%
inv1=inv(matrix) %
inv2=matrix^-1 %
%
plot([0:20],[10:-1:-10],'-o') %

View File

@@ -0,0 +1,47 @@
# 一级标题
## 二级标题
### 三级标题
#### 四级标题
有序列表:数字加一个点
1. 列表内容
2. 列表内容
3. 列表内容
无序列表:用 + - * 任何一种都可以。为了不和其他记号重复,个人倾向于用 + 。
+ 列表内容
+ 嵌套前面加几个空格。为了保险起见个人倾向于用四个空格或一个Tab。
+ 列表内容
+ 列表嵌套
+ 列表嵌套
+ 列表嵌套
*倾斜:前后一个星号*
**加粗:前后两个星号**
***斜体加粗:前后三个星号***
代码:用三个反引号。如下所示。
```
print('hello world')
```
分割线:三个或者三个以上的 - 或 * 。为了不和其他记号重复,个人倾向于用 --- 。
---
在Markdown中空一行可采用以下符号。该符号为HTML中的符号在Markdown中也是支持的。
<br />
以下是表格的书写形式。其中,第二行用一个横杆也是可以。为了保险起见,个人倾向于用三个横杆。
| 右对齐 | 居中对齐 | 左对齐 |
| ---: | :---: | :--- |
| 单元格 123 | 单元格 456 | 单元格 759 |
| 单元格 | 单元格 | 单元格 |
| 单元格 | 单元格 | 单元格 |

View File

@@ -0,0 +1,25 @@
<!-- 这是注释 -->
<h1>这是标题 1</h1>
<h2>这是标题 2</h2>
<h3>这是标题 3</h3>
<h4>这是标题 4</h4>
<p>这是一个段落。</p>
<p>a和b之间有个空格a&nbsp;b</p> <!-- &nbsp;代表空格,注意后面有个分号 -->
<a href="https://www.guanjihuan.com">这是一个链接https://www.guanjihuan.com</a>
<br /> <!-- 这是换行-->
<img src="图片的链接" />
<ul>
<li>无序列表 内容1</li>
<li>无序列表 内容2</li>
</ul>
<ol>
<li>有序列表 内容1</li>
<li>有序列表 内容2</li>
</ol>