필터 지우기
필터 지우기

Incorrect subtraction value in Matlab GUI

조회 수: 3 (최근 30일)
Matuno
Matuno 2013년 12월 29일
답변: Azzi Abdelmalek 2013년 12월 29일
I am working with COM port and I am getting a value (e.g. temperature value) from COM. Now when I am trying to subtract a specific value (e.g. 8) from this value it is not showing desired value. Here is the code:
function pushbutton1_Callback(hObject, eventdata, handles)
instrreset; %resets the serial devices
clc;
s = serial ('COM6');
RxText3 = fscanf(handles.serConn);
key = 8;
P = minus(RxText3,key);
set(handles.tempserial,'string',P);
fclose(s);
What I am expecting: Suppose I am getting a value as 32 and my key value is 8. Then I am expecting to get 24.
What I am getting: I am getting two values as 42 and 45.
Additional problem:
How can I set the value so that it would show 24 Celcius? I tried this : set(handles.tempserial,'string',P, 'Celcius') in which case nothing is shown.

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 12월 29일
Maybe you need to convert from string to double
P = minus(str2num(RxText3),key);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Use COM Objects in MATLAB에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by