Add files via upload

This commit is contained in:
Visualize-ML
2022-10-01 15:37:53 -04:00
committed by GitHub
parent b74824f363
commit be89c276da
10 changed files with 46 additions and 26 deletions

View File

@@ -58,7 +58,7 @@ with st.sidebar:
\sin(\theta) & \cos(\theta)
\end{bmatrix}''')
theta = st.slider('Degree',-180, 180, step = 5, value = 0)
theta = st.slider('Theta degree: ',-180, 180, step = 5, value = 0)
theta = theta/180*np.pi

View File

@@ -61,7 +61,7 @@ with st.sidebar:
a = st.slider('a',-2.0, 2.0, step = 0.1, value = 1.0)
b = st.slider('b',-2.0, 2.0, step = 0.1, value = 0.0)
c = st.slider('c',-2.0, 2.0, step = 0.1, value = 0.0)
d = st.slider('c',-2.0, 2.0, step = 0.1, value = 1.0)
d = st.slider('d',-2.0, 2.0, step = 0.1, value = 1.0)
theta = np.pi/6
A = np.array([[a, b],