What am I doing wrong with this function?
1 次查看(过去 30 天)
显示 更早的评论
I have the following code:
data = textread('new_data.txt');
D = sortrows(data,[11 7], {'ascend' 'descend'});
I get the following error:
Error using sortrows
Too many input arguments.
Error in Cross_Correlation (line 76)
D = sortrows(data,[11 7], {'ascend' 'descend'});
What am I doing wrong?
0 个评论
采纳的回答
Star Strider
2016-6-13
编辑:Star Strider
2016-6-13
Maybe this is what you intend:
D = sortrows(data, [11 -7]);
3 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Shifting and Sorting Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!