Using variables from .mat structures.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
there are given 2 channel matrices, namely,
channel_1.mat and channel_2.mat which contain the struct data.
I need to use variables from this struct in folowing function:
But I don't know how I can implement this
%Import channel information
data=load('C:\Users\askrrow\Downloads\MSCSP_MoCo_2023SoSe_HW5\channel_1.mat')
data=load('C:\Users\askrrow\Downloads\MSCSP_MoCo_2023SoSe_HW5\channel_2.mat')
%Full correlation matrices estimation
Nt=length(data.nF);
for i=nF:Nt
f(Nt,nT,nF(i))
end
function Rh = f(Nt,nT,nF)
Rh=1/Nt.*sum(reshape(data.H(:,:,nT,nF),[],1).*reshape(data.H'(:,:,nT,nF),[],1),'all')
end
Respuestas (1)
Sanjana
el 5 de Jun. de 2023
Hi,
The error message you encountered is due to attempting to access the transpose of the matrix H through parentheses directly. In MATLAB, the parentheses “()” operator has higher precedence than the transpose operator “'” according to the Operator Precedence Rules. Therefore, the expression “data.H'(:,:,nT,nF)” is interpreted as applying the parentheses to the transpose operator itself, rather than to the transposed matrix “ data.H'” resulting in an error.
To resolve this issue, it is recommended to assign the transposed matrix to a new variable before accessing its columns. By doing so, you explicitly indicate the desired order of operations.
Please, refer to the following link to know more about operator precedence rules,
For further clarification on accessing variables stored in a .mat file and accessing variables stored in a structure array, you can refer to the following links:
Hope this helps!
0 comentarios
Ver también
Categorías
Más información sobre Structures en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!