Create array tm and Tm corresponding to the midpoints of t and T Temperature steps
조회 수: 2 (최근 30일)
이전 댓글 표시
midpoint function needed for the tm and Tm
답변 (1개)
Walter Roberson
2019년 11월 19일
tm = t(1:end-1) + delt/2
where delt is the vector we discussed in your previous Question.
댓글 수: 2
Walter Roberson
2019년 11월 19일
delt = diff(t);
delT = diff(T);
tm = t(1:end-1) + delt/2;
tM = T(1:end-1) + delT/2;
참고 항목
카테고리
Help Center 및 File Exchange에서 Analog Filters에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!