Info

This question is closed. Reopen it to edit or answer.

Appending entire Rows in a struct

1 view (last 30 days)
Saar Peles
Saar Peles on 15 Apr 2020
Closed: MATLAB Answer Bot on 20 Aug 2021
Hi, I am trying to append an row (of variable size) of a an array inside of a struct. The first line would convert the numerical array into a string array.
The rows in the array vary from 1 to 7 and I want them to display side by side like this so that they can easily be transfered to an excel spreadsheet where all the values would be in one cell
A.k = [1, 2, 3];
A.k = string(A.k);
[1, 2 , 3] -> [ '1, 2, 3']
Biggest issue is knowing how many columns there are and in the case that there's only 1 column that it still works.
  6 Comments
Geoff Hayes
Geoff Hayes on 15 Apr 2020
You may need to provide a more complex example.
Walter Roberson
Walter Roberson on 15 Apr 2020
Maybe you have a non-scalar struct??
I do not seem to be catching what you are asking...

Answers (0)

Products


Release

R2019a

Community Treasure Hunt

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

Start Hunting!