How can I store number and string in the same cell in UITable?

조회 수: 1 (최근 30일)
I am trying to store a value in a cell that is something like Sw=0.256, but 'SW=' part is a string while '0.256' is a computed value. Both of these parts have to go in the same cell. Is there a way to do that?

채택된 답변

jonas
jonas 2018년 8월 9일
Not if you want the number stored as a double. See this recent thread:
You can of course calculate the number and then store it as a string.
X=0.256;
sprintf('Sw=%g',X)
ans =
'Sw=0.256'

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by