How to combine two variables in a table

조회 수: 3 (최근 30일)
012786534
012786534 2020년 1월 20일
댓글: Cameron B 2020년 1월 20일
Hi,
I simply want to combine two variables (mean and sd) into a single variable with the symbol ± in between numbers.
mean = {1,2,3,4,5,6,7,8,9}.';
sd = {0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9}.';
t = table(mean, sd);
t.output = {'1±0.1', '2±0.2', '3±0.3', '4±0.4', '5±0.5', '6±0.6', '7±0.7', '8±0.8', '9±0.9'}.';
The desired output is t.output.
Thank you,

답변 (1개)

Cameron B
Cameron B 2020년 1월 20일
You should rename your value called mean as something that is not already a function name.
meanval = {1,2,3,4,5,6,7,8,9}.';
sd = {0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9}.';
t = {strcat(num2str(cell2mat(meanval)),'±',num2str(cell2mat(sd)))};
  댓글 수: 2
012786534
012786534 2020년 1월 20일
Indeed, I should rename the mean variable.
I think there's something with your output: '123456789±±±±±±±±±000000000.........123456789'
Thank you,
Cameron B
Cameron B 2020년 1월 20일
Hmm when I type t{1}(1,:) it gives 1±0.1. I am on the mobile app so that may be different.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by