How to read txt file with complex number(with imaginary part) in matlab
30 次查看(过去 30 天)
显示 更早的评论
Dear all Any one could help me reading the txt file 'specimen1.txt' to plot the load vs extension .For instance:
Any one could help please as soon. Regards Ruming
0 个评论
采纳的回答
John BG
2016-7-27
编辑:John BG
2016-7-27
Hi NeoBeaver
A way to import your data is
A=textread('B field_example.txt','%s')
If you want to skip the header:
textread('B field_example.txt','%s','headerlines',5)
the header is already in
A{1:37}
but you still have to manually format it all in the way you want.
To go straight to the data:
L=zeros(1,length(A)-37)
for k=1:length(A)-37
L(k)=str2num(A{k+37})
end
Now L is 18 rows x 6 columns already complex double.
There are many more things that can be done during a text scan of this type, but bear in mind that the flexibility of cells with variable array elements, comes at a cost of less built-in functions, that have to be custom written.
So if you want to this answer developed, let me know.
NeoBeaver would you please be so kind to mark my answer as ACCEPTED ANSWER?
To any other reader, please if you find this answer of any help solving your question,
please click on the thumbs-up vote link,
thanks in advance
John
2 个评论
更多回答(2 个)
Star Strider
2016-7-27
编辑:Star Strider
2016-7-27
The textscan function will read the file without problems:
fidi = fopen('B field_example.txt','r');
Data = textscan(fidi, '%f%f%f%f%f%f', 'HeaderLines',6, 'CollectOutput',1);
Data = cell2mat(Data);
Look = Data(1:5,:) % Look At The First 5 Rows (Optional)
The first 2 lines:
Look =
Columns 1 through 3
-0.010491 + 0i -0.058909 + 0i -0.004124 + 0i
-0.0019969 + 0i -0.060173 + 0i -0.004124 + 0i
Columns 4 through 6
1.0928 + 3.1903i -2.2216 - 0.31198i -0.12483 + 0.046567i
1.4188 + 3.189i -2.0119 + 0.059764i -0.35796 + 0.17549i
EDIT — Your file has 108 elements, not 81. What do you want to include? How do you want to convert the matrix to a vector?
Two possibilities for converting the entire matrix to a row vector:
DataVec1 = reshape(Data, 1, []); % [Column#1' Column#2' ... ]
DataVec2 = reshape(Data', 1, []); % [Row#1 Row#2 ...]
2 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!