Suppose the complex column vector $\mathbf{x}$ is linearly transformed by the complex matrix $\mathbf{T}$ into $\mathbf{y}$:
\begin{align} \mathbf{y} = \mathbf{T}{x} \end{align}
Assuming $\mathbf{T}$ is full rank, how could I estimate matrix $\mathbf{T}$, having a set of values of the column vectors $\mathbf{x}$ and $\mathbf{y}$?
EDIT: My goal is to identify a reduced linear operator that produce the same results as another operator with higher dimensions. I have a set of symbols that are hermitian symmetric around the $N/2$-th row, e.g., for $N=8$, $x[1] = x[7]^{*}$, $x[2] = x[6]^{*}$ and so on. Then, since this is an application from communications, assume that only the first half of the column vector carries useful information. Thus, I want to find a linear operator that involves only this half, with size $(N/2 +1) \times (N/2 +1)$, in order to avoid using too much memory and processing.
I have clear equations for the $N \times N$ original operator, but the operator with reduced dimensions is very hard to prove. Thus, I'm resorting to estimation to obtain conclusions about the possibility of coming up with such operator.
The estimation I'm currently implementing is the following (following Michael C. Grant's answer).
SET_LENGTH = 1e3;
x = fft(rand(8,SET_LENGTH));
N = 8;
% Linear Operator
A = rand(N,N); %must be real-valued
w = exp(-1j*2*pi/N); % twiddle factor
W = w.^(repmat(0:N-1,N,1).*repmat(0:N-1,N,1).'); % DFT matrix
T = W*A*W';
% Hermitian symmetric symbols
y = T*x;
% Positive frequencies
xp = x(1:(N/2+1),:);
yp = y(1:(N/2+1),:);
% Estimate linear operator with reduced dimensions
Tp = (yp*xp')/(xp*xp')
% Compare results
Tp*xp(:,2) % Estimated
yp(:,2) % Original
Does the fact that the estimated value and the original are significantly differet mean that my problem has no solution?