24小时热门版块排行榜    

查看: 3279  |  回复: 6
当前只显示满足指定条件的回帖,点击这里查看本话题的所有回帖

hsli

铁虫 (小有名气)

[求助] Matlab之gui设计-如何将计算结果写入文本框?

请问如何将Design()中的计算结果写到data_out里面,即图中的等待设计计算区域?
界面图和程序段所示。
刚学MATLAB,请指点一下。



主程序段如下
CODE:
%初始化根窗体   
clf reset;   
set(gcf,'Units','pixels','position' ,[185 50 860 655],'name', '设计计算',...   
    'numbertitle', 'off', 'Tag', 'dsp');   
set(gcf, 'defaultuicontrolfontsize' ,12);   
set(gcf, 'defaultuicontrolfontname' , ' 隶书 ' );  

%添加组件   
%设计参数输入区域
labelhead1 = uicontrol(gcf,'Style', 'text', 'String', '','Position', [29 80 125 525],...   
    'BackgroundColor', [.5 .6 .6], 'FontSize', 12);  
labelhead11 = uicontrol(gcf,'Style', 'text', 'String', '设计参数输入','Position', [30 610 120 20],...   
    'BackgroundColor', [.8 .8 .8], 'FontSize', 14);   

%设计结果输出区域   
labelout = uicontrol(gcf,'Style', 'text', 'String', '设计结果输出','Position', [530 610 120 20],...   
    'BackgroundColor', [.8 .8 .8], 'FontSize', 14);   
data_out = uicontrol(gcf,'Style', 'edit', 'String', '等待设计计算','Position', [328 80 505 525],...
    'BackgroundColor', [.6 .7 .9],'FontSize', 10);  
%设计参数输入
% 制冷量Qo
label_Qo = uicontrol(gcf,'Style', 'text', 'String', '制冷量','Position', [30 570 60 20],...   
    'BackgroundColor', [.5 .6 .6], 'FontSize', 12);   
data_Qo = uicontrol(gcf,'Style', 'edit', 'String', '10','Position', [30 555 60 20], 'FontSize', 12);  
label_Qo = uicontrol(gcf,'Style', 'text', 'String', 'kW','Position', [90 555 25 18],...   
    'BackgroundColor', [.5 .6 .6], 'FontSize', 12);   

% 热源温度th
label_th = uicontrol(gcf,'Style', 'text', 'String', '热源温度','Position', [30 530 70 20],...   
    'BackgroundColor', [.5 .6 .6], 'FontSize', 12);   
data_th = uicontrol(gcf,'Style', 'edit', 'String', '85','Position', [30 515 60 20], 'FontSize', 12);
label_th = uicontrol(gcf,'Style', 'text', 'String', '℃','Position', [90 515 18 17],...   
    'BackgroundColor', [.5 .6 .6], 'FontSize', 12);  

% 冷冻水进口温度tw
label_tw = uicontrol('Style', 'text', 'String', '冷却水进口温度','Position', [30 490 120 20],...   
    'BackgroundColor', [.5 .6 .6], 'FontSize', 12);   
data_tw = uicontrol(gcf,'Style', 'edit', 'String', '32','Position', [30 475 60 20], 'FontSize', 12);
label_tw = uicontrol(gcf,'Style', 'text', 'String', '℃','Position', [90 475 18 17],...   
    'BackgroundColor', [.5 .6 .6], 'FontSize', 12);  

% 冷冻水出口温度tc1
label_tc1 = uicontrol(gcf,'Style', 'text', 'String', '冷冻水进口温度','Position', [30 450 120 20],...   
    'BackgroundColor', [.5 .6 .6], 'FontSize', 12);   
data_tc1 = uicontrol(gcf,'Style', 'edit', 'String', '11','Position', [30 435 60 20], 'FontSize', 12);  
label_tc1 = uicontrol(gcf,'Style', 'text', 'String', '℃','Position', [90 435 18 17],...   
    'BackgroundColor', [.5 .6 .6], 'FontSize', 12);  

% 冷却水进口温度tc2
label_tc2 = uicontrol(gcf,'Style', 'text', 'String', '冷冻水出口温度','Position', [30 410 100 20],...   
    'BackgroundColor', [.5 .6 .6], 'FontSize', 12);   
data_tc2 = uicontrol(gcf,'Style', 'edit', 'String', '8','Position', [30 395 60 20], 'FontSize', 12);  
label_tc2 = uicontrol(gcf,'Style', 'text', 'String', '℃','Position', [90 395 18 17],...   
    'BackgroundColor', [.5 .6 .6], 'FontSize', 12);  

%用于计算的按钮   
CalculateH = uicontrol(gcf,'Style', 'pushbutton', 'String', 'Calculate',...   
    'Position', [125 30 70 30], 'FontSize', 10);

%设置回叫函数   
set(CalculateH,'Callback', 'Design(data_Qo,data_th,data_tw,data_tc1,data_tc2)');
Design(data_Qo,data_th,data_tw,data_tc1,data_tc2);  

示例的回调函数如下
CODE:
function Result=Design(data_Qo,data_th,data_tw,data_tc1,data_tc2)

Qo=str2num(get(data_Qo,'string'));
th=str2num(get(data_th,'string'));
tw=str2num(get(data_tw,'string'));
tc1=str2num(get(data_tc1,'string'));
tc2=str2num(get(data_tc2,'string'));  

Result=Qo+th+tw+tc1+tc2;

[ Last edited by hsli on 2011-4-22 at 18:24 ]
回复此楼

» 猜你喜欢

» 本主题相关价值贴推荐,对您同样有帮助:

已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

yqx1985

木虫 (著名写手)

云中仙

【答案】应助回帖

感谢参与,应助指数 +1
同学,你真是a q,就我围观了
人面不知何时去,桃花依旧笑春风
5楼2012-04-14 01:01:27
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
查看全部 7 个回答

hsli

铁虫 (小有名气)

输出至少要求两排,如示例的回调函数中的tc2和Result一起同时显示在文本框中。
3楼2011-04-23 18:41:37
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

hsli

铁虫 (小有名气)

以解决,谢谢各位围观!
4楼2011-04-25 12:48:15
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

格物要致知

木虫 (著名写手)

【答案】应助回帖


感谢参与,应助指数 +1
臭水沟: 金币+1, 谢谢交流~~ 2012-04-15 10:35:31
将结果存储到一个string的变量中(比如str),然后设置“等待计算结果”,假设“等待计算结果”这个控件的名字是result,那么就是set(handles.result,'string',str)
格物致知专做科研
6楼2012-04-14 13:29:03
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[博后之家] 售SCI文章,我:8O5.5.1.O.54,科目齐全,可+急 +3 gy1nBQXYQJqL 2026-08-29 4/200 2026-08-29 18:04 by 4FFAWE8HcgUD
[考博] 售SCI一区T0P文章,我:8.O.55.1.O54,科目全,可伽急 +5 ASdOkHsho7FD 2026-08-28 8/400 2026-08-29 17:22 by 4FFAWE8HcgUD
[硕博家园] 售SCI一区文章,我:8.O.55.1.O.54,科目齐全,可伽急 +5 ASdOkHsho7FD 2026-08-28 9/450 2026-08-29 14:03 by jCd0dEvKHShX
[考研] 售一区SCI文章T0P,我:8O.551.O54,科目全,可十急 +4 ASdOkHsho7FD 2026-08-28 6/300 2026-08-29 11:40 by jCd0dEvKHShX
[基金申请] 国自然评审意见 +13 wangmingqi 2026-08-28 19/950 2026-08-29 10:22 by Poppy1104
[基金申请] 投票:  有多少人是今天查系统知道结果的? +16 爱看书的可乐 2026-08-26 18/900 2026-08-29 10:18 by winsaint
[基金申请] 2026年叶企孙基金 +4 bud_bud 2026-08-27 7/350 2026-08-29 07:23 by foolishmani
[基金申请] 基金不中,共勉 +11 eulota 2026-08-26 11/550 2026-08-28 14:22 by 火星超人xi
[基金申请] 怎么查啊 +6 huang1991js 2026-08-26 6/300 2026-08-28 08:42 by winsaint
[基金申请] 申请删除本帖 +6 lyz123lyz 2026-08-27 7/350 2026-08-27 17:31 by 宁静致远sy
[基金申请] 看板上这么多中的,有点像50人群里49个人都是骗子的那种感觉…… +5 a089 2026-08-26 6/300 2026-08-27 14:05 by jonewore
[文学芳草园] 梦想 +3 myrtle 2026-08-26 3/150 2026-08-27 10:01 by angelyueyi
[基金申请] 为什么 国际(地区)合作与交流项目 没有放榜? 10+3 majunge000 2026-08-26 11/550 2026-08-27 08:42 by 北京莱茵编辑
[基金申请] 我不理解! +15 Edward_pc 2026-08-26 23/1150 2026-08-26 20:34 by zzuzxg
[基金申请] 2026年的国家社科基金项目通讯评审的新规则与新动向、新挑战 +7 process2012 2026-08-23 10/500 2026-08-26 19:23 by hmhminy
[基金申请] 出来了 +9 trojank 2026-08-26 9/450 2026-08-26 14:25 by 宝贝虫子
[基金申请] 为什么国自然不能直接公布 +4 bjdxyxy 2026-08-26 4/200 2026-08-26 13:12 by qingmu1201
[基金申请] 国际合作可查了,中了面上 (EPI+1)(金币+50) +18 Ldrop2023 2026-08-26 18/900 2026-08-26 11:15 by cmrandy
[基金申请] 国合现在查不到了吗? +10 chengyan1220 2026-08-24 20/1000 2026-08-26 08:57 by peasantsprig
[基金申请] 明天应该可查了!? +6 chengyan1220 2026-08-23 6/300 2026-08-25 19:45 by zfd97
信息提示
请填处理意见