Community Profile

photo

Dimitar Georgiev


Last seen: 1 month ago Active since 2019

Statistics

  • Knowledgeable Level 1
  • First Answer

View badges

Content Feed

View by

Answered
xlsread doesn't read a column that contains string in the cells with unknown number of rows
You can use readcell, for example, example = readcell('example.xlsx','Range','A2:P5'); Now you can extract strings from the ce...

5 years ago | 0

| accepted

Answered
Pull out strings and its values from a text file.
cell = readcell('filename.xlsx','Range','......'); stringname = '......'; variable = strcmp(stringname,cell);

5 years ago | 0