dimension mismatch??! i cant see how this can be a dimension mismatch?

2 次查看(过去 30 天)
A.textdata(:,3) holds a large set of dates
I am trying to do this:
for i=1:size(A.textdata)
Dates(i,1) = datenum(A.textdata(i,3),'dd-mm-yyyy HH:MM:SS');
Dates2(i,1) = datestr(Dates(i,1),'dd-mm-yyyy ')
end
but i am getting thins error:
> ??? Subscripted assignment dimension mismatch.
Error in ==> Load at 12 Dates2(i,1) = datestr(Dates(i,1),'dd-mm-yyyy ')
Why is that? i cant see how there can be any dimension mismatches??

采纳的回答

Daniel Shub
Daniel Shub 2011-10-19
The problem is that
Dates2(i,1)
is a scalar, but
datestr(Dates(i,1),'dd-mm-yyyy ')
returns a string with length 10.
Dates2(i,:) = datestr(Dates(i,1),'dd-mm-yyyy ');
should work.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Simulink 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by