Error, Index in position 2 exceeds array bounds!!
3 次查看(过去 30 天)
显示 更早的评论
When I start loading my text file I get this error how to resolve? the text file is attached. And I am getting this error :
Index in position 2 exceeds array bounds.
Error in damping (line 12) freq=dm(:,1);
close all
clear all
% LOAD DATA OBTAINED FROM FEA ANALYSIS load Sp.txt; dm= Sp; freq=dm(:,1); amp=dm(:,2);
采纳的回答
Adam Danz
2018-9-14
My bet is that dm is empty which would imply either that your Sp.txt document is empty or it's not loading correctly.
dm = [];
dm(:,1)
Index in position 2 exceeds array bounds.
7 个评论
Walter Roberson
2018-11-14
Sorry, just noticed the content of the question now. The original file is in UTF 16 Little Endian encoding.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!