How can I manage dynamic array size ?
Mostrar comentarios más antiguos
I face a problem. I call a function but function returns different number of values for ex: sometimes return 9 or 8 or 7 etc. but after returning i kept the value in a array. for ex: f_array(i:)=d(A)...here i=1,2,3 etc. But i cant define a fixed size for f_array. because when i fixed its size & then if the return arrays size not matched ,then it gives error. i cant define its size like: size=[]. when i define in this way , for first returning array it gives no error, but for 2nd it gives error because first_array_size != second_array_size. How can i deal with this problem ?
Respuestas (4)
Store the output in a cell array
f_cell{i}=d(A)
3 comentarios
sufian ahmed
el 23 de Jul. de 2017
Matt J
el 25 de Jul. de 2017
It's not really sensible for the data that you describe, unless perhaps you have many columns of nearly the same size.
Image Analyst
el 25 de Jul. de 2017
f_cell is one array.
Image Analyst
el 23 de Jul. de 2017
0 votos
This is what cell arrays are for: storing variables of variable sizes and data types. Read the FAQ for a good tutorial: http://matlab.wikia.com/wiki/FAQ#What_is_a_cell_array.3F
Walter Roberson
el 23 de Jul. de 2017
temp = d(A);
farray(i, 1:length(temp)) = temp;
The above will make farray wider if necessary, filling in 0 in columns. If you need to have NaN or something else filled to indicate "not used" then the code becomes slightly longer.
2 comentarios
sufian ahmed
el 23 de Jul. de 2017
Editada: sufian ahmed
el 23 de Jul. de 2017
Walter Roberson
el 23 de Jul. de 2017
da = d(A);
Lda = length(da);
widthf = size(farray,2);
if Lda <= widthf
farray(i, 1: Lda) = da;
farray(i, Lda+1 : widthf) = nan;
else
farray(: widthf+1 : Lda) = nan;
farray(i, 1 : Lda) = da;
end
The above code does not assume that farray has been allocated with the maximum possible width. In the special case that you know that it has been allocated as the widest possible and that the maximum number of rows have been assigned, then initialize the whole thing to nan, like
widest_possible = 9;
maxrows = 173;
farray = nan(maxrows, widest_possible);
and after that storing each iteration becomes just
da = d(A);
farray(i, 1 : length(da)) = da;
If you do not know the maximum number of rows (an inefficient case!) but you did initialize to the widest, like
widest_possible = 9;
farray = zeros(0, widest_possible);
and you are (inefficiently!) growing by rows as you go, then you can use
farrary(i, :) = nan;
da = d(A);
farray(i, 1 : length(da)) = da;
amal laabidi
el 8 de Mayo de 2021
Editada: Image Analyst
el 8 de Mayo de 2021
0 votos
How do I create a dynamic table to store values measured using a mpu6050 sensor in MATLAB?
I transfered the measured data using a mpu6050 sensor to MATLAB to display it. Now, how do I create a table to sotcker this data?
6 comentarios
Image Analyst
el 8 de Mayo de 2021
"how to create a table" <=== With the table() function.
but I'm not sure what you mean by "sotcker the data". What does sotker mean?
amal laabidi
el 8 de Mayo de 2021
I have a nodeMCU esp8266 microcontroller linked to the MPU6050 sensor to collect the measured data (acceleration and rotation data), then send this data to the matlab every 100ms for display. to display the measured data in the form of a curve, you have to create a table to record these data and then draw the curves.
amal laabidi
el 8 de Mayo de 2021
so,how to create a table to record this data?
Image Analyst
el 8 de Mayo de 2021
I don't really know anything about your specific data but basically you pass column vectors into the table() function and it will make the table for you.
amal laabidi
el 10 de Mayo de 2021
do you know how to declare a dynamic array ???
Image Analyst
el 10 de Mayo de 2021
@amal laabidi What exactly does that (dynamic array) mean to you? Any array can be dynamic in that it's possible for you to change the values during run-time.
Categorías
Más información sobre Data Type Conversion en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!