Dimensions of matrices being concatenated are not consistent.

1 view (last 30 days)
I am trying to run the following code but the error Dimensions of matrices being concatenated are not consistent. occures please give your suggestion.
clc; clear; close all;
in=xlsread('input'); % Input File
out=xlsread('output'); %
Output File
data=[in out]
Files are attache herewith.

Accepted Answer

madhan ravi
madhan ravi on 29 Jan 2019
Edited: madhan ravi on 29 Jan 2019
data = [in ; out]'
% ^-—-—-^-—missed it

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!