MATLAB: Functionality of var1′ .* var2

.*convolutionfftfrequencyifftMATLAB

what is the functionality of the ' when we do
fft = var1fft' .* var2fft;
inverse = ifft(fft);
and whats the difference between it and var1 .* var2 (without ')

Best Answer

The single quote calls the ctranspose function here.