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
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 个评论
zainab malik
zainab malik 2018-9-14
Thank you sooooooo much. May be when i converted data from excel file to txt file at that time i used a wrong .txt type. Thats why it was not working I used Unicode.txt. Thanku very much :)
Walter Roberson
Walter Roberson 2018-11-14
Sorry, just noticed the content of the question now. The original file is in UTF 16 Little Endian encoding.
You can use my csv2table from This Posting . You will need both files I posted there.

请先登录,再进行评论。

更多回答(0 个)

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by