Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How can I change my fprint error

1 Ansicht (letzte 30 Tage)
Yixuan Zhang
Yixuan Zhang am 15 Sep. 2019
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021

Antworten (1)

Image Analyst
Image Analyst am 15 Sep. 2019
Bearbeitet: Image Analyst am 15 Sep. 2019
You can't use the Ice array itself for indexes since they're floating point and indexes need to be like 1, 2, 3, 4, 5 etc. (integers starting at 1). To fix:
fprintf('Ice thickness for %d days = ', length(Ice));
fprintf('%.3f, ', Ice);

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by