writematrix not working matlab

조회 수: 11 (최근 30일)
Anderco Iosif Tiberiu
Anderco Iosif Tiberiu 2021년 5월 19일
편집: Image Analyst 2021년 5월 19일
Hi, I am trying to write to a .xlsx file like this
val = [id, title, category, number];
writematrix(val, 'carti.xlsx', 'WriteMode','append');
I get the values from editfields
id and number are int and title and category are strings
my problem is that this function will write to all the data to de A row instead of the A, B, C, and D row.
  댓글 수: 3
Anderco Iosif Tiberiu
Anderco Iosif Tiberiu 2021년 5월 19일
@Stephen Cobeldick I have updated the question
Image Analyst
Image Analyst 2021년 5월 19일
편집: Image Analyst 2021년 5월 19일
You added the flag "dumb question". Do you want me to delete this question? If not, attach your variables in a .mat file
save('answers.mat', 'id', 'title', 'category', 'number', 'val');

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

답변 (1개)

Image Analyst
Image Analyst 2021년 5월 19일
But you didn't update your question to give the sizes of the arrays like Stephen asked. My suspicion is that your vectors id, title, category, number are all row vectors, not column vectors, so val is a row vector, not a matrix. Try
val = [id(:), title(:), category(:), number(:)];
That turns them all into column vectors so you'll have an N row-by-4 column matrix and now you should see that in the workbook instead of having them all on the same line.
  댓글 수: 1
Anderco Iosif Tiberiu
Anderco Iosif Tiberiu 2021년 5월 19일
they are not vectors they are variables like id = 1 tible = "abcd" category = "efgh" numer = 4

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

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by