array concatenation problem in matlab
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Samriddhi Kumari
am 27 Jun. 2021
Kommentiert: Shivani Dixit
am 7 Jul. 2021
How can I add up on array without using concatenation or inbuilt function in matlab? I just want to combine the values in array.
0 Kommentare
Akzeptierte Antwort
Shivani Dixit
am 27 Jun. 2021
Assuming any inbuilt function should not be used, you can add up one array to other by the following method :
% assume this to be your initial array
x=[1 2 3]
% now suppose a new value is to be added i.e 4
x=[x 4]
This method concatenates values to the array without using any inbuilt function in matlab.
3 Kommentare
Shivani Dixit
am 7 Jul. 2021
A good catch , but as per the query , i assume that in this context, built-in means not to use any ready-made functions that concatenates the array.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!