How to display the contents of a cell in a messagebox

4 次查看(过去 30 天)
I have a 6x1 cell variable with name 'Compounds' containing the six names of identified substances is an analyzed sample. My Question now is how I can let these names pop up in a messagebox. I know I can use the msgbox function, but I can't get it to work with the cell variable. Anyone who can help me out?

采纳的回答

Adam Danz
Adam Danz 2019-10-11
编辑:Adam Danz 2019-10-11
compounds = {'CaCO3','CO2','CuSO4','C6H12O6','HCI','NaCl'};
msg = msgbox(['Compounds: ', strjoin(compounds,', ')],'title')
If you want subscripts,
compounds = {'CaCO_3','CO_2','CuSO_4','C_6H_1_2O_6','HCI','NaCl'};
createMode.WindowStyle = 'non-modal';
createMode.Interpreter = 'tex';
msg = msgbox(['Compounds: ', strjoin(compounds,', ')],'title',createMode)
191010 205448-title.png

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

标签

产品


版本

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by