Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

work with the array

1 Ansicht (letzte 30 Tage)
Maksim Tiurin
Maksim Tiurin am 21 Jul. 2019
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
t is time step (for example t=3). G=8.
(((3*k-2)*G+1):(3*k*G)) - this dependency must persist
for k = 1:t
intcon(1,:,k) = (((3*k-2)*G+1):(3*k*G))
end
this loop creat the array 1x16x3, but I need intcon with size 1x48, how can I extract 3 lines and create one lines. Problem is that t is variable and each time we have different size. maybe from the very beginning (formation of the loop), it is worth doing differently.
Thank you in advance for your response.
  2 Kommentare
Walter Roberson
Walter Roberson am 21 Jul. 2019
reshape(intcon,1,[])
Maksim Tiurin
Maksim Tiurin am 21 Jul. 2019
:-O
Thank you, kind man. It seems my little brain needs to have a pause

Antworten (0)

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by