Hi, how do I change all the values in a specific column ?
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Rita Barnabé
am 1 Nov. 2021
Beantwortet: Walter Roberson
am 1 Nov. 2021
ecg = Data(:,6); % Original ECG values
n = 9; % Number of bits of the channel (?)
VCC = 3; % Operating voltage
Gecg = 1000; % Sensor gain
ecg_volts = (ecg/(2^n)-1/2)*VCC/Gecg;
and now i want to change the values of the 6 column from ecg to ecg_volts
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Denoising and Compression finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!