menu: Update PolynomialMenu

Add `ToPolynomial` to the menu
Replace `sqrt` and `cbrt` with `sq` and `cubed`

Signed-off-by: Christophe de Dinechin <christophe@dinechin.org>
This commit is contained in:
Christophe de Dinechin 2024-05-03 23:49:49 +02:00
parent 791c814cf3
commit 593e6a41e6

View file

@ -544,6 +544,7 @@ MENU(PolynomialsMenu,
// Root-finding operations
// ----------------------------------------------------------------------------
"Ⓟ'\t'", ID_SelfInsert,
"→Poly", ID_ToPolynomial,
"Poly→", ID_FromPolynomial,
"Obj→", ID_Explode,
"Display", ID_PrefixPolynomialRender,
@ -558,8 +559,8 @@ MENU(PolynomialsMenu,
"TVMRoot", ID_Unimplemented,
"XRoot", ID_xroot,
"Zeros", ID_Unimplemented,
"Square", ID_sqrt,
"Cube", ID_cbrt);
"Square", ID_sq,
"Cube", ID_cubed);
MENU(HyperbolicMenu,
// ----------------------------------------------------------------------------