Cant understand how the values are stored
Show older comments
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 Comments
Rehman Tanim
on 27 Nov 2020
Rehman Tanim
on 27 Nov 2020
Edited: Rehman Tanim
on 27 Nov 2020
KSSV
on 27 Nov 2020
You have the data already in your mat files, and the code is laoding the data and trasposing the first column.
Rehman Tanim
on 27 Nov 2020
KSSV
on 27 Nov 2020
What you are looking into are completely two different data sets. There is no conversion of numbers taking place.
Rehman Tanim
on 27 Nov 2020
Edited: Image Analyst
on 27 Nov 2020
Accepted Answer
More Answers (0)
Categories
Find more on Structures in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!