フィルターのクリア

Cant understand how the values are stored

1 回表示 (過去 30 日間)
Rehman Tanim
Rehman Tanim 2020 年 11 月 27 日
コメント済み: Rehman Tanim 2020 年 11 月 27 日
A = load('r08_edfm.mat');
B = load('r08_edfm.mat');
d = A.val(1,:);
d_T = d';
input_channel = 3;
noisy_sig = B.val(input_channel,:);
noisy_sig_T = noisy_sig'
at workspace im getting these values
  6 件のコメント
KSSV
KSSV 2020 年 11 月 27 日
What you are looking into are completely two different data sets. There is no conversion of numbers taking place.
Rehman Tanim
Rehman Tanim 2020 年 11 月 27 日
編集済み: Image Analyst 2020 年 11 月 27 日
Can you please explain the data of A.val of first row? How is the data stored?

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2020 年 11 月 27 日
You forgot to attach the .mat files so we can't do much. The first row of the val matrix stored in the mat file is extracted and put into a variable you cryptically call "d". We don't know what that first row means and so we can't "explain" it. All we can tell is that the first row of val from A is stored in a row vector "d" and then you're transposing it and putting it into column vector d_T, and you're then getting the third row of the val matrix from a different mat file and calling that noise, and also transposing that row vector into a column vector called "noisy_sig_T".
Can't you ask the people who created the mat file? If you don't even know what it means, then why do you want to do anything with it? Where did you get that script, or did you write it?
  4 件のコメント
Image Analyst
Image Analyst 2020 年 11 月 27 日
There is no "Direct_1" column in the mat file:
A =
struct with fields:
val: [6×10000 double]
B =
struct with fields:
val: [6×10000 double]
so I'm not sure what you're talking about. And all the values in val are around 4-500 in the first part of the array, not around 42.
Rehman Tanim
Rehman Tanim 2020 年 11 月 27 日
thanks

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by