Why does this linear function not work while using the data acquisition toolbox

2 次查看(过去 30 天)
%if the calibration switch is turned on use the slopes and
% intercepts read in above
if app.calibrate == true
while i < numel(app.indices)
i = i + 1;
data(:,i) = data(:,i)*slope(:,i)+intercepts(:,i);
end
% if the calibration switch is turned off then just display data as Voltage
elseif app.calibrate == false
data = data*1 + 0;
end
I read in the slopes and intercepts calculated in the workspace and read it in using evalin.
When the calibrate switch is in noting appears on the graph vs when it is off:
I also know that if i replace i with any whole number it will work and correspond with the correct channels slope and intercept.
data(:,1) = data(:,1)*slope(:,1)+intercepts(:,1);

采纳的回答

Maneet Kaur Bagga
Maneet Kaur Bagga 2024-2-20
Hi,
As per my understanding, you created the "Calibrate" switch in the App Designer for Live Data Acquisition and defined a callback for the switch with the conditions mentioned in the code above. Also, it is mentioned that on changing the value of "i" to a whole number the switch is working correctly.
One of the possible workaround for the array could be to initialize the variable "i" before the loop starts, ensuring that the loop is running from the beginning of the "app.indices" array. Please check if "app.indices" is defined and is not empty.
Also, as multiple channels are calibrated you are incrementing "i" in the while loop, therefore it can be replaced by a "for" loop as it will avoid to manually initialize and increment and the loop control statement will handle it automatically.
Please refer to the code snippet below for better understanding:
if app.calibrate == true
for i = 1:numel(app.indices)
data(:,i) = data(:,i) * slope(:,i) + intercepts(:,i);
end
plotGraph(app, data);
elseif app.calibrate == false
plotGraph(app, data);
end
Hope this helps!
  5 个评论
Connor
Connor 2024-2-21
I had someone else answer it! Which fixed it. I am now trying to figure out how to make the code run more smoothly as a whole and add a way to save the data to the workspace so all three channels can be used in the signal analyzer app.

请先登录,再进行评论。

更多回答(0 个)

产品


版本

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by