Info
This question is closed. Reopen it to edit or answer.
I find there is some problem with the importdata function import data, there is some data without negative character?What is the reason?
1 view (last 30 days)
Show older comments
I find there is some problem with the importdata function import data, there is some data without negative character?What is the reason?
The below is the code:
clc;clear all;
filec=importdata('xcood-020.txt');
data(:,1)=filec.data;
please see the data file attached. How to deal with it ?
0 Comments
Answers (1)
Image Analyst
on 5 Jul 2020
I don't know. I think maybe all the minus signs in the string on each line might be confusing it. Try readmatrix:
data = readmatrix('xcood-020.txt')
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!