how can i eliminate this error..
1 次查看(过去 30 天)
显示 更早的评论
key=[1 0 1 0 0 0 0 0 1 0]
P10=[3 5 2 7 4 10 1 9 8 6]
left=key(P10(1:5))
right=key(P10(6:10))
left_1=circshift(left,[1 -1])
right_1=circshift(right,[1 -1])
bit=bitconcat(left_1,right_1);
i am getting error--
Undefined function 'bitconcat' for input arguments of type 'double'.
Error in bit=bitconcat(left_1,right_1);
0 个评论
采纳的回答
Walter Roberson
2017-2-9
bitconcat applies only to fi() objects, not to regular numeric values.
Have you considered just
[left_1, right_1]
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Colormaps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!