Skip to content

In IPython terminal (not Jupyter) list brackets for solution lists misplaced #31

Description

@gutow

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.

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions