I want to sum datas that incoming from the sensor, how can I do that?
4 views (last 30 days)
Show older comments
I want to continuously sum the temperature values from a sensor.
0 Comments
Answers (1)
Sivapriya Srinivasan
on 31 Mar 2023
To continuously sum the temperature values from a sensor in MATLAB, you can use a loop to read the sensor values and add them to a running total. Here's an example code snippet that demonstrates this:
total = 0; % initialize the running total to zero
while true % loop indefinitely
% read the temperature value from the sensor
temperature = readTemperature(); % replace with your own function to read the sensor
% add the temperature value to the running total
total = total + temperature;
% display the current total
disp(['Current total: ' num2str(total)]);
% wait for some time before reading the sensor again
pause(1); % replace with your desired time interval
end
In this code, the total variable is initialized to zero. The loop then reads the temperature value from the sensor using the readTemperature() function (which you would need to replace with your own function to read the sensor). The temperature value is added to the running total using the + operator. The current total is then displayed using the disp() function. Finally, the loop waits for some time (in this case, 1 second) before reading the sensor again.
4 Comments
Walter Roberson
on 3 Apr 2023
That code is equivalent to
function y = fcn(u);
y = double(u);
end
Are you sure you want to do that? And not, for example, keep a running total of the input values?
See Also
Categories
Find more on Naming Conventions 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!