Trying to fill an empty array

3 views (last 30 days)
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.

Accepted Answer

Sulaymon Eshkabilov
Sulaymon Eshkabilov on 6 Jun 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);

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!