Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -398,7 +398,7 @@ with tab1:
|
|
398 |
st.markdown("""Enter expressions for s = numerator/denominator
|
399 |
(using variables `y`, `beta`, `z_a`)""")
|
400 |
st.latex(r"\text{This s will be inserted into:}")
|
401 |
-
st.latex(r"\frac{y\beta(
|
402 |
s_num = st.text_input("s numerator", value="y*beta*(z_a-1)", key="s_num")
|
403 |
s_denom = st.text_input("s denominator", value="z_a", key="s_denom")
|
404 |
|
@@ -420,7 +420,7 @@ with tab1:
|
|
420 |
- **Alternate Low Expression** (Orange): Alternative asymptotic expression
|
421 |
- **Custom s Expression** (Purple): Result from user-defined s substituted into:
|
422 |
""")
|
423 |
-
st.latex(r"\frac{y\beta(
|
424 |
|
425 |
# Display the current parameter values
|
426 |
st.markdown("### Current Parameters")
|
|
|
398 |
st.markdown("""Enter expressions for s = numerator/denominator
|
399 |
(using variables `y`, `beta`, `z_a`)""")
|
400 |
st.latex(r"\text{This s will be inserted into:}")
|
401 |
+
st.latex(r"\frac{y\beta(z_a-1)\underline{s}+(a\underline{s}+1)((y-1)\underline{s}-1)}{(a\underline{s}+1)(\underline{s}^2 + \underline{s})}")
|
402 |
s_num = st.text_input("s numerator", value="y*beta*(z_a-1)", key="s_num")
|
403 |
s_denom = st.text_input("s denominator", value="z_a", key="s_denom")
|
404 |
|
|
|
420 |
- **Alternate Low Expression** (Orange): Alternative asymptotic expression
|
421 |
- **Custom s Expression** (Purple): Result from user-defined s substituted into:
|
422 |
""")
|
423 |
+
st.latex(r"\frac{y\beta(z_a-1)\underline{s}+(a\underline{s}+1)((y-1)\underline{s}-1)}{(a\underline{s}+1)(\underline{s}^2 + \underline{s})}")
|
424 |
|
425 |
# Display the current parameter values
|
426 |
st.markdown("### Current Parameters")
|