I am not able to concatenate to the array with features of 1st frame. please someone help

1 view (last 30 days)
Whenever i am trying to concatenate the unmatch_feature with the feature1 i.e.unmatch_feature= [unmatch_feature;features1]; in the code i am geting the error .. Code and the error are attached

Accepted Answer

Walter Roberson
Walter Roberson on 15 May 2015
unmatch_feature = [unmatch_feature;features1.Features];
Note that this will form a continuous N x 3 array as the result, with no boundaries in-between. Which is fine if they are all the same size so you can know where to divide them up later. But if they are different sizes, then you should be considering storing them in a cell array or struct array.
  2 Comments
Subhechha Roy
Subhechha Roy on 3 Jan 2016
I am working on the same project. Can we get in touch? I need some help with this code. Drop a mail at : subu003.roy@gmail.com. Thanks!
Walter Roberson
Walter Roberson on 4 Jan 2016
Subhechha Roy, the original poster would not have been notified about your comment; also the original poster does not have a contact mechanism offered in their profile. They will probably not see your message.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!