Make two matrices of same length reducing the size of largest matrix
    6 views (last 30 days)
  
       Show older comments
    
    Poulomi Ganguli
      
 on 15 Aug 2017
  
    
    
    
    
    Commented: Ranjeet Singh
 on 3 Aug 2022
            Hello, I have two matrix, A = [318x1] and B = [313x1]. In order to compare between two, I need to make size of A same as that of B, by reducing the size of A. Any help?
2 Comments
Accepted Answer
  Ryan Klots
      
 on 15 Aug 2017
        
      Edited: Ryan Klots
      
 on 15 Aug 2017
  
      You could try something like
% Find out the length of the shorter matrix
minLength = min(length(A), length(B));
% Removes any extra elements from the longer matrix
A = A(1:minLength);
B = B(1:minLength);
See Also
Categories
				Find more on Creating and Concatenating Matrices in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


