how to do zero padding in middle
1 回表示 (過去 30 日間)
古いコメントを表示
I have some text files.. All text file contains two columns. both of 480 rows. But some text files have some rows missing.. In one of them after 63rd row directly there is 86th row.. So, total rows get reduced to 450. Now i want to convert this rows in again 480rows by zero padding from 64th to 85th.. So, how to do..? This text file is attached here.. http://www.fileconvoy.com/dfl.php?id=g4a8afb397a4e11ed999171111e1b74b570928a6b1
3 件のコメント
回答 (1 件)
Walter Roberson
2012 年 11 月 21 日
Consider using textscan() with the MissingValue option set to 0
5 件のコメント
Walter Roberson
2012 年 11 月 21 日
If the values can go at the end then if M is what you read the data in to,
M(end+1:end+length(missingvalues), 1) = missingvalues;
and then write the file out in an appropriate format.
参考
カテゴリ
Help Center および File Exchange で Text Data Preparation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!