Using data from a FOR loop to then create an array

조회 수: 1 (최근 30일)
Robert
Robert 2014년 3월 17일
답변: Walter Roberson 2014년 3월 17일
Hi all, currently doing a project where I have calculated the temperature in a FOR loop but then need to use these values(around 500 values) to produce an array? to get another range of values(500 values) for each temperature value.

답변 (1개)

Walter Roberson
Walter Roberson 2014년 3월 17일
your_array = zeros(500,1);
for t = 1 : 500
your_array(t) = ....
end

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by