when using listdlg is it possible to use tex characters in the ListString?

1 vue (au cours des 30 derniers jours)
Vasileios Xendochidis
Vasileios Xendochidis le 31 Déc 2021
This is what i am trying to do :
(I would like ''\sigma_x'' to turn into σx )
listdlg('ListString' , {'Von Mises Stress', '\sigma_x' , '\sigma_y'})
But the result i get is:

Réponses (2)

Stephen23
Stephen23 le 31 Déc 2021
Modifié(e) : Stephen23 le 31 Déc 2021
With recent MATLAB versions and OSs you can just use σ:
listdlg('ListString' , {'Von Mises Stress', 'σ_x' , 'σ_y'})
E.g. R2018a:

Walter Roberson
Walter Roberson le 31 Déc 2021
listdlg('ListString' , {'Von Mises Stress', '<HTML>&sigma;<sub>x</sub>' , '<HTML>&sigma;<sub>y</sub>'})

Catégories

En savoir plus sur Stress and Strain dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by