photo

Andreas Kvalbein Fjetland


Active since 2017

Followers: 0   Following: 0

Statistics

All
  • Knowledgeable Level 1
  • First Answer
  • Solver

View badges

Feeds

View by

Answered
Attempting to write my data into a single CSV file.
This should do the trick response = zeros(21,1); rts = zeros(21,1); % Looop resultTable = table(response,rts); writetab...

meer dan 5 jaar ago | 0

Answered
Too many files open error when using load and save. fclose('all') doesn't solve the problem
Try usinng the clear command instead of fclose. This worked in my test here. clear('structMatrix')

meer dan 5 jaar ago | 0

Answered
filter table by character string entry
Hi Dan, try this method out. %create random table t1 = [1,2,3,4]'; t2 = {'Hei','boo','Hei','boo'}'; tbl = table(); tbl.t...

meer dan 5 jaar ago | 2

| accepted

Answered
How to read multiple csv files and do calculations
Hi Gagan, I think the datastore function could help you out here. The code below will open all compatible files in the subfolde...

meer dan 5 jaar ago | 0