Borrar filtros
Borrar filtros

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

2 visualizaciones (últimos 30 días)
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 comentario
DGM
DGM el 22 de Feb. de 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

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by