提交 45154676 编写于 作者: xuchaoxin1375's avatar xuchaoxin1375

reduce the size of the project

上级 2972ffb2
此差异已折叠。
此差异已折叠。
---
title: "Quarto Basics"
format:
docx:
code-fold: false
jupyter: python3
---
For a demonstration of a line plot on a polar axis, see @fig-polar.
```{python}
#| label: fig-polar
#| fig-cap: "A line plot on a polar axis"
import numpy as np
import matplotlib.pyplot as plt
r = np.arange(0, 2, 0.01)
# theta = 2 * np.pi * r
theta = 4 * np.pi * r
fig, ax = plt.subplots(
subplot_kw = {'projection': 'polar'}
)
ax.plot(theta, r)
ax.set_rticks([0.5, 1, 1.5, 2])
ax.grid(True)
plt.show()
```
\ No newline at end of file
此差异已折叠。
$$
D={(\boldsymbol{z}_i,y_i)}^{m}_{i=1}
$$
\ No newline at end of file
此差异已折叠。
/mnt/d/repos/CCSER/SER
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册