Unable to perform assignment because the left and right sides have a different number of elements.

1 vue (au cours des 30 derniers jours)
%% save start date time
filename = 'Format_competition.xlsx';
table_starttimes = zeros(100,1);
formatOut = 'HH:MM:SS';
for ind = 1:length(table_starttimes);
date = datestr(now,formatOut)
table_starttimes(ind) = [date];
pause;
Error in tijd (line 7)
table_starttimes(ind) = [date];
I don't see why there are not an equal number of elements, can somebody help me?

Réponses (2)

KSSV
KSSV le 16 Juil 2021
Modifié(e) : KSSV le 16 Juil 2021
%% save start date time
filename = 'Format_competition.xlsx';
table_starttimes = cell(100,1);
formatOut = 'HH:MM:SS';
for ind = 1:length(table_starttimes);
date = datestr(now,formatOut)
table_starttimes{ind} = date;
pause;

Peter Perkins
Peter Perkins le 27 Juil 2021
No idea what
filename = 'Format_competition.xlsx';
has to do with this, so I suspect you have not told us the whole story. In any case, don't use now, don't use datestr, use datetime:
table_starttimes = NaT(100,1);
for ind = 1:length(table_starttimes);
table_starttimes(ind) = datetime("now","Format","HH:mm:ss");
pause;
end

Catégories

En savoir plus sur Dates and Time dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by