Error using the igrfmagn function (collecting the output)

2 vues (au cours des 30 derniers jours)
Nikolaos Zafirakis
Nikolaos Zafirakis le 19 Avr 2019
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

Réponse acceptée

Walter Roberson
Walter Roberson le 19 Avr 2019
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 commentaire
Nikolaos Zafirakis
Nikolaos Zafirakis le 19 Avr 2019
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!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by