springboot毕设项目大飞外卖系统xdn1p(java+VUE+Mybatis+Maven+Mysql)

springboot毕设项目大飞外卖系统xdn1p(java+VUE+Mybatis+Maven+Mysql)

项目运行

环境配置:

Jdk1.8 + Tomcat8.5 + Mysql + HBuilderX(Webstorm也行)+ Eclispe(IntelliJ IDEA,Eclispe,MyEclispe,Sts都支持)。

项目技术:

Springboot + mybatis + Maven + Vue 等等组成,B/S模式 + Maven管理等等。

环境需要

1.运行环境:最好是java jdk 1.8,我们在这个平台上运行的。其他版本理论上也可以。

2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA;

3.tomcat环境:Tomcat 7.x,8.x,9.x版本均可

4.硬件环境:windows 7/8/10 1G内存以上;或者 Mac OS;

5.是否Maven项目: 否;查看源码目录中是否包含pom.xml;若包含,则为maven项目,否则为非maven项目 

6.数据库:MySql 5.7/8.0等版本均可;

技术栈

1. 后端:Springboot mybatis

2. 前端:vue+css+javascript+jQuery+easyUI+highcharts

使用说明

1. 使用Navicat或者其它工具,在mysql中创建对应名称的数据库,并导入项目的sql文件;

2. 使用IDEA/Eclipse/MyEclipse导入项目,修改配置,运行项目;

3.管理员账号:abo 密码:abo

4.开发环境为Eclipse/idea,数据库为mysql 使用java语言开发。

5.运行SpringbootSchemaApplication.java 即可打开首页

6.数据库连接src\main\resources\application.yml中修改

7.maven包版本apache-maven-3.3.9.

8.后台路径地址:localhost:8080/项目名称/admin

 

 

 

 

 

 

 

 

以下是802.11a OFDM MATLAB仿真代码: ```matlab % 802.11a OFDM Simulation % Author: Jiahao Hu % Date: 2018/11/19 clear;clc; %% Parameters % Basic parameters Fs = 20e6; % Sampling frequency (Hz) Fc = 5.18e9; % Carrier frequency (Hz) Ts = 1/Fs; % Sampling period (s) T = 4e-6; % OFDM symbol period (s) N = 64; % Number of subcarriers M = 4; % Modulation order L = 16; % Cyclic prefix length SNR = 20; % Signal-to-noise ratio (dB) % Derived parameters Ncp = L/N*T; % Cyclic prefix duration (s) df = Fs/N; % Subcarrier spacing (Hz) f = (-N/2:N/2-1)*df; % Subcarrier frequencies (Hz) Tsymb = T + Ncp; % OFDM symbol duration (s) Ndata = 48; % Number of data subcarriers Ng = N - Ndata; % Number of guard subcarriers NFFT = N; % FFT size Npilot = 4; % Number of pilot subcarriers Nsym = 100; % Number of OFDM symbols %% Transmitter % Generate data data = randi([0 M-1], Ndata, Nsym); % Generate pilots pilot = ones(Npilot, Nsym); pilot(2,:) = -1; pilot(3,:) = 1; pilot(4,:) = -1; % Generate zeros for guard subcarriers guard = zeros(Ng, Nsym); % Combine data, pilots and guard subcarriers X = [guard; pilot; data; pilot; guard]; % Perform IFFT x = ifft(X, NFFT); % Add cyclic prefix xc = [x(end-L+1:end,:); x]; % Serial-to-parallel conversion xsp = reshape(xc, NFFT+L, []); % Generate preamble preamble = [1; 1; 1; 1; 1; 1; 1; -1; 1; -1; 1; -1; -1; 1; -1; -1]; preamble = repmat(preamble, Nsym, 1); % Combine preamble and data xsp = [preamble, xsp]; % Parallel-to-serial conversion xser = reshape(xsp, [], 1); % Upsample xups = upsample(xser, Fs*T); % Modulate xmod = qammod(xups, M); % Pass through AWGN channel n = 1/sqrt(2)*(randn(size(xmod)) + 1i*randn(size(xmod))); % Complex Gaussian noise snr = 10^(SNR/10); power_xmod = sum(abs(xmod).^2)/length(xmod); power_n = sum(abs(n).^2)/length(n); scale_factor = sqrt(power_xmod/(power_n*snr)); xmod_noise = xmod + scale_factor*n; % Demodulate xdemod = qamdemod(xmod_noise, M); % Downsample xdn = downsample(xdemod, Fs*T); % Receiver % Serial-to-parallel conversion xsp_rx = reshape(xdn, NFFT+L, []); % Remove cyclic prefix xcp_rx = xsp_rx(L+1:end,:); % Perform FFT X_rx = fft(xcp_rx, NFFT); % Remove guard and pilot subcarriers data_rx = X_rx(Ng+1:Ng+Ndata,:); % Calculate BER ber = sum(sum(data_rx ~= data)) / (Ndata*Nsym) % Plot constellation diagram figure; plot(xmod_noise, 'o'); axis([-6 6 -6 6]); title('Constellation diagram'); xlabel('I'); ylabel('Q'); grid on; ``` 注意,需要使用MATLAB的Communications Toolbox。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值