Trying to fill an empty array
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sydney Kehoe
el 6 de Jun. de 2021
Respondida: Sulaymon Eshkabilov
el 6 de Jun. de 2021
This is a bit complex and I am fairly new to matlab but I need to create a for loop for specific time ranges and then have this data be filled into an empty array and I am not quite sure how to go about it. Any help would be appreciated. Thanks.
0 comentarios
Respuesta aceptada
Sulaymon Eshkabilov
el 6 de Jun. de 2021
There are a couple of crucial errs in your screenshoted code.
(1) In "if" statement condition 2 after && sign "g(ii)" is missing
(2) In "elseif" statement, the same type of err
(3) No need, "else" part. Since no outputs are to be produced
(4) "empty_array" has to have an index, e.g.: empty_array(ii) = g(ii);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!