Clear Filters
Clear Filters

.append() equivalent in MATLAB

1 524 views (last 30 days)
Swati Sarangi
Swati Sarangi on 9 Nov 2020
Hi all,
I have a doubt regarding the function in MATLAB which will perform same function as performed by .append() in PYTHON. Do you have any function in mind which will use same activity of extending a list in MATLAB.
Thanks in advance!

Accepted Answer

Stephan
Stephan on 9 Nov 2020
>> List = [1 2 3; 4 5 6]
List =
1 2 3
4 5 6
>> List = [List; 7 8 9]
List =
1 2 3
4 5 6
7 8 9
  3 Comments
Saunok Chakrabarty
Saunok Chakrabarty on 22 Apr 2021
Hi Stephan,
Is there a function that expands an array dynamically inside a loop, like append() in Python? Like it will keep adding elements based on a specified condition within the loop.
Regards,
Saunok
Cem Keske
Cem Keske on 19 Oct 2021
Hello,
You can use this directly to expand the array dynamically:
array = [array, other_array];
For example:
array = [];
for i = 1:10
if mod(i,2) == 0
array = [array, i]
end
end
array = 2
array = 1×2
2 4
array = 1×3
2 4 6
array = 1×4
2 4 6 8
array = 1×5
2 4 6 8 10
I hope this helps,
Regards,
Cem

Sign in to comment.

More Answers (1)

Amir Azadeh Ranjbar
Amir Azadeh Ranjbar on 6 Oct 2023
yes...
you can use end :
there are many way to do this :
examples :
ThemeCopy
x = [1,2,3,4,5] ;
y = [6,7,8] ;
Num_Add = size(y,2) ;
counter = 1 ;
while counter <= Num_Add
Last = size(x,2)+1 ;
x(1,Last) = y(1,counter) ;
counter = counter + 1;
end
disp(x)
1 2 3 4 5 6 7 8
also you can python in matlab very easy :
ThemeCopy
data = py.list([1,2,3,4]) ;
data.append(9)
double(data)
ans = 1×5
1 2 3 4 9
Another example that can be used to add rows to the table
ThemeCopy
data_mat = [1;2;3;4] ;
data = table(data_mat) ;
new_data = {5} ;
data = [data;new_data]

Community Treasure Hunt

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

Start Hunting!