How to append for each iteration?
조회 수: 11 (최근 30일)
이전 댓글 표시
Dear all,
the situation is the following: I have a projectlength of 3 years with an assumed number of hours of 10. For each hour the yield is calculated with a certain function (which I simplify in this example with the number 2). As the projectlength and hournumber should stay variable, I would like to first calculate the yield in each hour of the year (helper(k)) and then append the solutions of each projectyear below each other. So the yield should look like this:
I got the following so far, however, it does not work.
hournum = 10;
projectlength = 3;
yield = [];
for p=1:projectlength
for k = 1:hournum
helper(k)=2;
end
yield(p) = [yield(p); {helper(k)}];
end
Error Message: Index exceeds the number of array elements (0).
댓글 수: 2
Jan
2021년 1월 18일
Whenever you write "does not work", append the error message or a details description of the difference between your expectations and the obtained results.
채택된 답변
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Operators and Elementary Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!