필터 지우기
필터 지우기

How to use concatenation of values?

조회 수: 1 (최근 30일)
Tousif Ahmed
Tousif Ahmed 2017년 7월 15일
댓글: Tousif Ahmed 2017년 7월 15일
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
KSSV
KSSV 2017년 7월 15일
편집: KSSV 2017년 7월 15일
What are the dimensions of each? Read about horzcat and vertcat.
Tousif Ahmed
Tousif Ahmed 2017년 7월 15일
one is 72x400 and the other is 486x400. Having the name of the variables as input and input2 respectively

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2017년 7월 15일
features = [input; input2];
  댓글 수: 3
Walter Roberson
Walter Roberson 2017년 7월 15일
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 2017년 7월 15일
Thank You Sir

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by