Effacer les filtres
Effacer les filtres

Unable to perform assignment because the left and right sides have a different number of elements.

1 vue (au cours des 30 derniers jours)
for i=1:100
s_code1(i)=strcat(s_code(2*i-1,:),s_code(2*i,:));
end
c1=cross(s_code1,100);

Réponse acceptée

KSSV
KSSV le 8 Oct 2020
Modifié(e) : KSSV le 8 Oct 2020
s_code = cell(100,1);
for i=1:100
s_code1{i}=strcat({s_code{2*i-1},s_code{2*i});
end
  5 commentaires
KSSV
KSSV le 8 Oct 2020
What is s_code? In the answer..it is initialized ..so it cannot work...
Kanika Bhalla
Kanika Bhalla le 9 Oct 2020
Hi KSSV. Thanku for the response.Let me try something and will share the code with you.

Connectez-vous pour commenter.

Plus de réponses (1)

Ameer Hamza
Ameer Hamza le 8 Oct 2020
If you are using R2016b or later, you can also try the following
s_code1 = strings(1, 100)
for i=1:100
s_code1(i)=strcat(s_code(2*i-1,:),s_code(2*i,:));
end
  3 commentaires
Ameer Hamza
Ameer Hamza le 8 Oct 2020
Can you share the value of s_code in a .mat file? Also, can you paste the code you tried running?
Kanika Bhalla
Kanika Bhalla le 9 Oct 2020
Hi Ameer Hamza. Thanku for the response.Let me try something and will share the code with you.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Environment and Settings dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by