Effacer les filtres
Effacer les filtres

accessing the element for the matrix but that elemnt is in the form of row vector

2 vues (au cours des 30 derniers jours)
VASUNDHARA V
VASUNDHARA V le 22 Fév 2022
Commenté : DGM le 22 Fév 2022
accessing the element for the matrix but that elemnt is in the form accessing the element for the matrix but that elemnt is in the form of row vectorof row vector .eg
A=[ d(1,:) d(5,:) d(1,:)
d(1,:) d(4,:) d(6,:)]
and d=[111111
111111
111111
111111
111111
111111]
so code is
For j=1:6
temp1=A(j)
so it will generate a result as 111111 only not a single 1 at j=1.
your help is highly appreciated
  1 commentaire
DGM
DGM le 22 Fév 2022
I don't know what you're asking for, least of all because the code already does what you appear to be asking.
d = [111111
111111
111111
111111
111111
111111]
d = 6×1
111111 111111 111111 111111 111111 111111
A = [d(1,:) d(5,:) d(1,:)
d(1,:) d(4,:) d(6,:)]
A = 2×3
111111 111111 111111 111111 111111 111111
for j = 1:6
temp1 = A(j)
end
temp1 = 111111
temp1 = 111111
temp1 = 111111
temp1 = 111111
temp1 = 111111
temp1 = 111111

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Logical 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