concatenate text and variables in a uitable
조회 수: 2 (최근 30일)
이전 댓글 표시
Good afternoon. I have the following problem I have a matrix (XonT) that is variable in size and "double", and I am trying to add a row of type "char" to the end of the XonT matrix, but I can not understand it. , and I guess it's due to the Incopatibility between types. Is there any way to achieve this? I leave the following code in which I am working. Thank you.
for f=1:NP
Modos = (TTT(1:NP,1:NP)*(10^6)*Cant_port) - ((sol_frec(f,1))^2)*Matriz_masa ;
EO1= Modos(2:NP, 1);
EOO= Modos(2:NP, 2:NP);
Xon = inv(EOO)*(-1)*(EO1);
Xon =[1;Xon];
XonT (:, f) = Xon;
XonT (NP+1, f)= ['Mod',num2str(f)] ; % This is the line of code that the row should be for me !!!!
end
댓글 수: 2
dpb
2019년 6월 14일
Forget the nonworking code; show example of the data structures you have and what you're trying to achieve.
We don't have any of the variables in your code snippet to look at so doesn't help much...
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!