Error using the igrfmagn function (collecting the output)

조회 수: 1 (최근 30일)
Nikolaos Zafirakis
Nikolaos Zafirakis 2019년 4월 19일
댓글: Nikolaos Zafirakis 2019년 4월 19일
I can’t seem to collect the values produced by the function igrfmagm. The error produced says ‘Error using cell Too many output arguments’. Either by you using cell or zeros the output is the same. The first output is a vector and the rest scaler quantities. The inputs are all scalers. Thanks in advance to anyone who helps!
time = 100;
[mag_field_vector,hor_intensity,declinatioon,inclination,total_intensity]=cell(size(time));
for i=1:length(time)
[mag_field_vector,hor_intensity,declinatioon,inclination,total_intensity] ...
= igrfmagm(alt(i),lat(i),lon(i),T(i),12)
end

채택된 답변

Walter Roberson
Walter Roberson 2019년 4월 19일
time = 100;
[mag_field_vector, hor_intensity, declinatioon, inclination, total_intensity] = deal(cell(size(time)));
for i = 1:numel(time)
[mag_field_vector{i}, hor_intensity{i}, declinatioon{i}, inclination{i}, total_intensity{i}] ...
= igrfmagm(alt(i), lat(i), lon(i), T(i), 12)
end
It is not clear why you loop over the elements of time but time does not form an input to your calculation.
It is not obvious that alt, lat, lon, T will all have a number of elements equal to the number of elements in time
By the way, is there any particular reason you used declinatioon instead of declination ?
  댓글 수: 1
Nikolaos Zafirakis
Nikolaos Zafirakis 2019년 4월 19일
Thanks, it works perfectly. Time is T I just forgot to change the last one. Also changed the declination to declination thanks for spotting that out!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by