필터 지우기
필터 지우기

how to create a second column of static values in a matrix

조회 수: 2 (최근 30일)
Michael
Michael 2011년 5월 26일
basically i have a single column vector A of doubles. I want to add an entire column to the right of this vector with a string that is the same for all values.
Something like this:
A = [1; 2; 3; 4; 5; 6; 7];
I want to add a column to A in order to create B below
B =
1 &nbsp&nbsp&nbsp 'test'
2 &nbsp&nbsp&nbsp 'test'
3 &nbsp&nbsp&nbsp 'test'
4 &nbsp&nbsp&nbsp 'test'
5 &nbsp&nbsp&nbsp 'test'
6 &nbsp&nbsp&nbsp 'test'
7 &nbsp&nbsp&nbsp 'test'
The column of 'test' is what i wish to add
Thanks

채택된 답변

Sean de Wolski
Sean de Wolski 2011년 5월 26일
B = [num2cell(A),repmat({'test'},size(A))]

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Hypothesis Tests에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by