V1.0.0
Get following in IPython terminal:
In[5]: algwsym_config.output.solve_to_list = True
In[6]: solve([e1, e2], [wn, xi])
Out[6]: omega_n = sqrt(16*T_p**2 + pi**2*T_s**2)/(T_p*T_s)
xi = 4*T_p/sqrt(16*T_p**2 + pi**2*T_s**2)
[, ]
When should get the following:
In[5]: algwsym_config.output.solve_to_list = True
In[6]: solve([e1, e2], [wn, xi])
Out[6]: [omega_n = sqrt(16*T_p**2 + pi**2*T_s**2)/(T_p*T_s), xi = 4*T_p/sqrt(16*T_p**2 + pi**2*T_s**2)]
This appears to be an issue with using command line overrides in IPython terminal when latex output is not available. It is unclear why things are fine for straight command line, but not here.
V1.0.0
Get following in IPython terminal:
When should get the following:
This appears to be an issue with using command line overrides in IPython terminal when latex output is not available. It is unclear why things are fine for straight command line, but not here.