필터 지우기
필터 지우기

Using variables from .mat structures.

조회 수: 2 (최근 30일)
Ruslan Askarov
Ruslan Askarov 2023년 6월 1일
편집: Stephen23 2023년 6월 5일
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')
Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters.
end
  댓글 수: 4
Ruslan Askarov
Ruslan Askarov 2023년 6월 2일
with H' I meant hermitian transpose, maybe there is another operator.
Regarding to input data nT and nF are time and frequency variables respectively(Nt and Nf are total number of these variables). We can get these values from strcuct which we export from .mat file. The problem is that I don't know how to extract concrete data from sctructure. I need example.
There is also hint: data.H(:,:,nT,nF) but i'm not familiar with such syntax
Do you have some ideas??
Stephen23
Stephen23 2023년 6월 5일
편집: Stephen23 2023년 6월 5일
"with H' I meant hermitian transpose, maybe there is another operator."
That is the correct operator, it is just the location is wrong. Perhaps you intended this:
data.H(:,:,nT,nF)'
% ^

댓글을 달려면 로그인하십시오.

답변 (1개)

Sanjana
Sanjana 2023년 6월 5일
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!

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by