Why does str2num take much longer to convert 1001 long char array apposed to a 1000 long char array (MatLab R2010b 64bit, on Win 64bit)
Mostra commenti meno recenti
Example:
%make 1001-by-3 char array of numbers, can replace 3 with any size
t = '0123456789';
t = t(ceil(rand(3,1001)*10))';
%big difference in time needed to convert 1000 vs 1001 numbers
tic,n1000 = str2num(t(1:1000,:));toc
tic,n1001 = str2num(t(1:1001,:));toc
% Elapsed time is 0.000285 seconds.
% Elapsed time is 0.011493 seconds.
%results are identical
all(n1000 == n1001(1:1000))
%ans =
% 1
1 Commento
Serge
il 11 Mar 2023
Risposte (2)
Walter Roberson
il 1 Giu 2016
0 voti
You should use timeit() from the File Exchange to get more accurate timing. (timeit was eventually made part of MATLAB.)
I do see more of a difference than I would expect in R2016a on OS-X.
I recommend you switch to str2double()
2 Commenti
Serge
il 2 Giu 2016
Walter Roberson
il 2 Giu 2016
f = @() str2double(t1000); t7 = timeit(f)
f = @() str2double(t1001); t8 = timeit(f)
On my system it is not as fast as t1 or t2 but it is faster than any of the others.
What's your ultimate goal here, of which I suspect this conversion is one step in a larger process?
If you want to generate 1000 (or 1001) 3-digit numbers I wouldn't work with char arrays at all. Just create the data as numbers in the first place.
tic
x = randi([100 999], 1001, 1);
toc
If you're trying to convert data that you read in from a file as text into numbers, why not read that data in as numbers in the first place? If you're using functions like readtable or readmatrix set the import options created by detectImportOptions to read the data in using a numeric data type.
If you're trying to do something else and you can explain that task in more detail we may be able to offer more specific suggestions.
Categorie
Scopri di più su Data Type Conversion in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!