Good day!
I am trying to multiply two matrices those are:
z = [64 x 1] ; with complex attribute.
top = [32 x 64]
both of the matrices class are double but when I tried to run the program I got an error at the last line
Matrix dimensions must agree.
here is the code:
clear all; clc;
load('eeg.mat');
load('top.mat');
N = 64;
M = 32;
Psi = dftmtx(N);
z = Psi * VarName1;
y = z * top;
the output that I want is [32 x 1]