Symbolic value assignment in GUIDE

조회 수: 1 (최근 30일)
Muhendisleksi
Muhendisleksi 2017년 12월 20일
댓글: Muhendisleksi 2017년 12월 22일
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
F=get(handles.edit1,'String');
D=get(handles.edit3,'String');
f = sym(F);
D = symvar(D);
turev =diff(f,D);
set(handles.text2,'String',turev) % there is an error here

채택된 답변

Geoff Hayes
Geoff Hayes 2017년 12월 20일
Muhendisleksi - try using char to convert the symbolic expression to a string that you can then set in the text control. For example,
...
turev =diff(f,D);
set(handles.text2,'String',char(turev)) % there is an error here
Unfortunately, I don't have the Symbolic Toolbox so I can't confirm if the above will work.
  댓글 수: 2
Walter Roberson
Walter Roberson 2017년 12월 20일
Yes, that should work.
If you have a symbolic array, then if you char() it then you will get text that begins with 'matrix(' which you probably do not want. So for that, use
arrayfun(@char, SymbolicVariableNameHere, 'uniform', 0)
to get a cell array of character vectors with the contents. You would then have to decide how you wanted to present that array as text.
Muhendisleksi
Muhendisleksi 2017년 12월 22일
thanks Geoff Hayes

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by