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 Center および File ExchangeMatrices and Arrays についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by