how can i eliminate this error..

2 vues (au cours des 30 derniers jours)
ablaze
ablaze le 9 Fév 2017
Commenté : ablaze le 9 Fév 2017
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);

Réponse acceptée

Walter Roberson
Walter Roberson le 9 Fév 2017
bitconcat applies only to fi() objects, not to regular numeric values.
Have you considered just
[left_1, right_1]
  1 commentaire
ablaze
ablaze le 9 Fév 2017
thank u its working...

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Convert Image Type dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by