matlab 桥梁跨径组合问题GUI图形界面完成

2023-10-13 19:40

本文主要是介绍matlab 桥梁跨径组合问题GUI图形界面完成,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

利用上一次的源代码进行的简单界面设计
下面是效果图


接下来是图形代码

function varargout = bijiaoGUI(varargin)
% BIJIAOGUI MATLAB code for bijiaoGUI.fig
%      BIJIAOGUI, by itself, creates a new BIJIAOGUI or raises the existing
%      singleton*.
%
%      H = BIJIAOGUI returns the handle to a new BIJIAOGUI or the handle to
%      the existing singleton*.
%
%      BIJIAOGUI('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in BIJIAOGUI.M with the given input arguments.
%
%      BIJIAOGUI('Property','Value',...) creates a new BIJIAOGUI or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before bijiaoGUI_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to bijiaoGUI_OpeningFcn via varargin.
%
%      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
%      instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES% Edit the above text to modify the response to help bijiaoGUI% Last Modified by GUIDE v2.5 13-Jul-2018 23:16:27% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...'gui_Singleton',  gui_Singleton, ...'gui_OpeningFcn', @bijiaoGUI_OpeningFcn, ...'gui_OutputFcn',  @bijiaoGUI_OutputFcn, ...'gui_LayoutFcn',  [] , ...'gui_Callback',   []);
if nargin && ischar(varargin{1})gui_State.gui_Callback = str2func(varargin{1});
endif nargout[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
elsegui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT% --- Executes just before bijiaoGUI is made visible.
function bijiaoGUI_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to bijiaoGUI (see VARARGIN)
set(handles.text1,'visible','off')
set(handles.text2,'visible','off')
set(handles.text4,'visible','off')
% Choose default command line output for bijiaoGUI
handles.output = hObject;% Update handles structure
guidata(hObject, handles);% UIWAIT makes bijiaoGUI wait for user response (see UIRESUME)
% uiwait(handles.figure1);% --- Outputs from this function are returned to the command line.
function varargout = bijiaoGUI_OutputFcn(hObject, eventdata, handles) 
% varargout  cell array for returning output args (see VARARGOUT);
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)% Get default command line output from handles structure
varargout{1} = handles.output;function edit1_Callback(hObject, eventdata, handles)
% hObject    handle to edit1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of edit1 as text
%        str2double(get(hObject,'String')) returns contents of edit1 as a double% --- Executes during object creation, after setting all properties.
function edit1_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))set(hObject,'BackgroundColor','white');
end% --- Executes on button press in pushbutton1.
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)str1=get(handles.edit1,'String');
KJ=str2num(str1);
%x存放data
%寻找函数,找到所有整数的组合
%53为一跨长度可任意取值,一般跨径为40~60m
%此函数仅考虑纵向分割
%让跨径参数化%K跨选择方程
YKJ=0.2*KJ-1
%四舍五入
YY=round(YKJ)
data = [];
for k=3:13for b=0:0.5:5a=(KJ-2*b)/k;if rem(a,1) ~= 0a;continueelsea;b;k;x=[a,b,k];data = [data;x];endend
end
data%筛选函数,选出更适合的组合
index=[];
A=data(:,1);
for i=1:length(A)if A(i)>=3 & A(i)<=7index=[index;i];elsecontinueend
end
indexdataX=[];
for i=1:length(index)aa=data(index(i),:);dataX=[dataX;aa];
end
dataX%平均性检测,选择比较平均的几组数据
Z=ones(1,size(dataX,1));
AA=5;BB=2.5;KK=YY;
for i=1:size(dataX,1)Z(i)=abs(dataX(i,1)-AA)/AA+abs(dataX(i,2)-BB)/BB+abs(dataX(i,3)-KK)/KK;
end
Z;[F,ix]=sort(Z,'descend');
ixx=ix(1,fix(size(dataX,1)/2):size(dataX,1));
%将ixx倒叙
ixxx=fliplr(ixx);dataXX=[];
for i=1:length(ixxx)p=dataX(ixxx(i),:);dataXX=[dataXX;p];
end
dataXX;
A2=[]
%对a打分
for i=1:size(dataXX,1)A2(i)=abs(dataXX(i,1)-5)/5;
end
A2
ta=tabulate(A2(:))
NZ=size(ta,1)
AAA=[];
for i =1:size(ta,1)for j=1:length(A2)if A2(j) == ta(i,1)AAA(j)=1-(i-1)*(1/NZ);endend
end
AAA;
B2=[];
BBB=[];
%对b打分
for i=1:size(dataXX,1)B2(i)=abs(dataXX(i,2)-2.5)/2.5;
end
B2;
ta2=tabulate(B2(:))
for i =1:size(ta2,1)for j=1:length(B2)if B2(j) == ta2(i,1)BBB(j)=1-(i-1)*(1/NZ);endend
end
BBB;
%对c打分
K2=[]
KKK=[]
for i=1:size(dataXX,1)K2(i)=abs(dataXX(i,3)-YY)/YY;
end
K2
ta3=tabulate(K2(:))
for i =1:size(ta3,1)for j=1:length(K2)if K2(j) == ta3(i,1)KKK(j)=1-(i-1)*(1/NZ);endend
end
KKK%层次分析法
%为设置判断矩阵
%一致性指标查表,3阶Ri为0.58
%原则上CR小于0.1时,可以考虑
P=[1,5,3;1/5,1,1/3;1/3,3,1;];
n1=length(P);
ri=[0,0,0.58,0.9,1.12];
[x,y]=eig(P);
lamda=max(diag(y))
cr0=(lamda-n1)/(n1-1)/ri(n1)
ZZJG=[];
if cr0<0.1disp('一致性检测通过')%归一化处理,得出权重系数for i =1:n1for j=1:n1PP(i,j)=P(i,j)/sum(sum(P));endendPPH=sum(PP,2);for i =1:length(H)W(i)=H(i)/sum(H);end %权重值Wx_new=[AAA;BBB;KKK];PJZ=W*x_new[Z,xidx]=sort(PJZ,'descend');xidxfor i=1:length(xidx)ZZJG=[ZZJG;dataXX(xidx(i),:)];endZZJG2=ZZJG(2:size(ZZJG,1),:);
endset(handles.text1,'visible','on')
set(handles.text2,'visible','on')
set(handles.text4,'visible','on')
set(handles.text1,'string','跨径推荐组合为:','FontSize',12);
set(handles.text2, 'string', num2str(ZZJG),'FontSize',12);
set(handles.text4,'string','分段长度   两侧长度  跨数','FontSize',12);

这篇关于matlab 桥梁跨径组合问题GUI图形界面完成的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/205433

相关文章

大数据小内存排序问题如何巧妙解决

《大数据小内存排序问题如何巧妙解决》文章介绍了大数据小内存排序的三种方法:数据库排序、分治法和位图法,数据库排序简单但速度慢,对设备要求高;分治法高效但实现复杂;位图法可读性差,但存储空间受限... 目录三种方法:方法概要数据库排序(http://www.chinasem.cn对数据库设备要求较高)分治法(常

Vue项目中Element UI组件未注册的问题原因及解决方法

《Vue项目中ElementUI组件未注册的问题原因及解决方法》在Vue项目中使用ElementUI组件库时,开发者可能会遇到一些常见问题,例如组件未正确注册导致的警告或错误,本文将详细探讨这些问题... 目录引言一、问题背景1.1 错误信息分析1.2 问题原因二、解决方法2.1 全局引入 Element

关于@MapperScan和@ComponentScan的使用问题

《关于@MapperScan和@ComponentScan的使用问题》文章介绍了在使用`@MapperScan`和`@ComponentScan`时可能会遇到的包扫描冲突问题,并提供了解决方法,同时,... 目录@MapperScan和@ComponentScan的使用问题报错如下原因解决办法课外拓展总结@

MybatisGenerator文件生成不出对应文件的问题

《MybatisGenerator文件生成不出对应文件的问题》本文介绍了使用MybatisGenerator生成文件时遇到的问题及解决方法,主要步骤包括检查目标表是否存在、是否能连接到数据库、配置生成... 目录MyBATisGenerator 文件生成不出对应文件先在项目结构里引入“targetProje

C#使用HttpClient进行Post请求出现超时问题的解决及优化

《C#使用HttpClient进行Post请求出现超时问题的解决及优化》最近我的控制台程序发现有时候总是出现请求超时等问题,通常好几分钟最多只有3-4个请求,在使用apipost发现并发10个5分钟也... 目录优化结论单例HttpClient连接池耗尽和并发并发异步最终优化后优化结论我直接上优化结论吧,

Java内存泄漏问题的排查、优化与最佳实践

《Java内存泄漏问题的排查、优化与最佳实践》在Java开发中,内存泄漏是一个常见且令人头疼的问题,内存泄漏指的是程序在运行过程中,已经不再使用的对象没有被及时释放,从而导致内存占用不断增加,最终... 目录引言1. 什么是内存泄漏?常见的内存泄漏情况2. 如何排查 Java 中的内存泄漏?2.1 使用 J

numpy求解线性代数相关问题

《numpy求解线性代数相关问题》本文主要介绍了numpy求解线性代数相关问题,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 在numpy中有numpy.array类型和numpy.mat类型,前者是数组类型,后者是矩阵类型。数组

解决systemctl reload nginx重启Nginx服务报错:Job for nginx.service invalid问题

《解决systemctlreloadnginx重启Nginx服务报错:Jobfornginx.serviceinvalid问题》文章描述了通过`systemctlstatusnginx.se... 目录systemctl reload nginx重启Nginx服务报错:Job for nginx.javas

Redis缓存问题与缓存更新机制详解

《Redis缓存问题与缓存更新机制详解》本文主要介绍了缓存问题及其解决方案,包括缓存穿透、缓存击穿、缓存雪崩等问题的成因以及相应的预防和解决方法,同时,还详细探讨了缓存更新机制,包括不同情况下的缓存更... 目录一、缓存问题1.1 缓存穿透1.1.1 问题来源1.1.2 解决方案1.2 缓存击穿1.2.1

vue解决子组件样式覆盖问题scoped deep

《vue解决子组件样式覆盖问题scopeddeep》文章主要介绍了在Vue项目中处理全局样式和局部样式的方法,包括使用scoped属性和深度选择器(/deep/)来覆盖子组件的样式,作者建议所有组件... 目录前言scoped分析deep分析使用总结所有组件必须加scoped父组件覆盖子组件使用deep前言