Changing from char variable to another input

조회 수: 2 (최근 30일)
Jake Bowd
Jake Bowd 2019년 10월 8일
댓글: Jake Bowd 2019년 10월 9일
Forgive my naivity on this one. How can I change a 1x47004 char to a matrix which has letters/words in some cells and numbers in the rest? At present I have the following 6x6 cell.
1x47004 char [] [] [] [] []
1x45843 char [] [] [] [] []
1x46992 char [] [] [] [] []
1x46432 char [] [] [] [] []
1x46459 char [] [] [] [] []
1x48191 char [] [] [] [] []
  댓글 수: 5
dpb
dpb 2019년 10월 8일
OK, you're trying to read some custom format it appears.
Attach a section of one of the underlying .mot files so we can see what you're actually starting from.
The conversion from the .mat file is trying to fixup after a mess; better by far to avoid the mess in the first place instead.
Image Analyst
Image Analyst 2019년 10월 8일
What is a .mot file? Is it the same as a .mat file? Did you create it with the save() function?

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

채택된 답변

Joe Vinciguerra
Joe Vinciguerra 2019년 10월 8일
편집: Joe Vinciguerra 2019년 10월 8일
Your *.mot files are coming in as one very long character array.
You can either try to parse it character-by-character into a cell array, or table, or structure, etc... OR import your data differently.
Try using the readtable function
Try this:
for i = 1 : nfiles
data{i} = readtable(fullfile(testfiledir, matfiles(i).name));
end
  댓글 수: 10
Jake Bowd
Jake Bowd 2019년 10월 8일
Brilliant, thank you so much for the help getting the .mot files in!
Are you able to direct me to how to create/write dedicated parsers for the other files?
(can you tell that I am new to Matlab?! :) )
Thank you so much
Jake Bowd
Jake Bowd 2019년 10월 9일
Guillaume, how to I notify that I am happy with your answer and mark it as 'answered'?
P.s. if you are able to direct me to how to create/write dedicated parsers for the other files that would be really useful.
Cheers

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by