Filter löschen
Filter löschen

How to use concatenation of values?

1 Ansicht (letzte 30 Tage)
Tousif Ahmed
Tousif Ahmed am 15 Jul. 2017
Kommentiert: Tousif Ahmed am 15 Jul. 2017
i have a variable in which i have stored all the values which i obtained after performing HOG feature extraction and in other variable i have stored values obtained after performing Gabor filter feature extraction. Now i need to concatenate those two variables to a single variable and give it as a single input to the neural network. Can anyone help me please?
  2 Kommentare
KSSV
KSSV am 15 Jul. 2017
Bearbeitet: KSSV am 15 Jul. 2017
What are the dimensions of each? Read about horzcat and vertcat.
Tousif Ahmed
Tousif Ahmed am 15 Jul. 2017
one is 72x400 and the other is 486x400. Having the name of the variables as input and input2 respectively

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 15 Jul. 2017
features = [input; input2];
  3 Kommentare
Walter Roberson
Walter Roberson am 15 Jul. 2017
filestruct1 = load('FirstFile.mat');
filestruct2 = load('SecondFile.mat');
combined = [filestruct1; filestruct2];
save('Result', 'combined', '-struct');
This assumes that there are no variable names in common. If there are variable names in common then you need to define the dimension number that they should be concatenated along, and need to define what you want to happen for variables of types that cannot be concatenated (for example, function handles.)
Tousif Ahmed
Tousif Ahmed am 15 Jul. 2017
Thank You Sir

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by