% y1与y2
k=pi;v=1;A1=-1;A2=1;
x=0:0.01:4;
t=0:0.01:10;
for i=1:length(t)-1
y1=A1*sin(k*(x-v*t(i)));
y2=A2*sin(k*(x+v*t(i)));
plot(x,y1,'r',x,y2,'b'),axis([-1,5,-1.5,1.5]);
grid on;
xlabel('两列波某一时刻的波形');
pause(0.01);
end
阅读全部
|
wdt。
贴于 2022年12月22日 12:29
hide
bbsi
clear;clc
load 2008D.mat
[n,m] = size(X);
disp(['共有' num2str(n) '个评价对象, ' num2str(m) '个评价指标'])
Judge = input(['这' num2str(m) '个指标是否需要经过正向化处理,需要请输入1 ,不需要输入0: ']);
if Judge == 1
Position = input('请输入需要正向化处理的指标所在的列,例如第2、3、6三列需要处理,那么你需要输入[2,3,6]: '); %[2,3,4]
disp('请输入需要处理的这些列的指标类型(1:极小型, 2:中间型, 3:区间型) ')
Type = input('例如:第2列是极小型,第3列是区间型,第6列是中间型,就输入[1,3,2]: ');
for i = 1 : size(Position,2)
......................
阅读全部
|
zy1194705720
贴于 2021年8月17日 19:07
hide
bbsi
问题二 穷举法
clc, clear, close all
a=readmatrix('数据.txt');
b=[0,0,0,0,0,0,0];
maxi=0;
id=[];
w=[0.15218741,0.083072708,0.102457361,0.408327392,0.09413388,...
0.016964106,0.142857143];
for i=1:18
for j=i+1:19
for k=j+1:20
for d=1:7
......................
阅读全部
|
zy1194705720
贴于 2021年7月23日 21:21
hide
bbsi
% 程序说明:目标跟踪程序,实现运动弹头对运动物体的三维跟踪,主函数
% 状态方程: x(t)=Ax(t-1)+Bu(t-1)+w(t)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
clc;
clear;
close all;
delta_t=0.01; %测量周期,采样周期
longa=10000; %机动时间常数的倒数,即机动频率
tf=6;
T=tf/delta_t; %时间长度3.7s,一共采用T=370次
%状态转移矩阵,用F表示
......................
阅读全部
|
jmzhp
贴于 2020年8月30日 15:49
hide
bbsi
function [p3 min1 max1 min2 max2]=maxProfit(prices,n)
temp1 = 0;
temp2 = 0;
temp3 = 0;
l = 0;
p1 = 1;
p2 = 1;
p3 = 1;
maxa1 = 0;
maxa2 = 0 ;
mina1 = 0;
mina2 =0;
......................
阅读全部
|
ckl124578
贴于 2018年8月21日 11:02
hide
bbsi
function varargout = xianshi(varargin)
% XIANSHI MATLAB code for xianshi.fig
% XIANSHI, by itself, creates a new XIANSHI or raises the existing
% singleton*.
%
% H = XIANSHI returns the handle to a new XIANSHI or the handle to
% the existing singleton*.
%
% XIANSHI('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in XIANSHI.M with the given input arguments.
%
% XIANSHI('Property','Value',...) creates a new XIANSHI or raises the
......................
阅读全部
|
施杰越
贴于 2018年6月18日 00:29
hide
bbsi
%第1步对泄漏电流进行莫莱小波交换
co_LCsorce=cwt(LCsorce,l:1 28,'moil');
%第2步将泄漏电流分割为工频半周波
function BothPeakPerPeriodMatrix=HalfPeriodSeperation_1 40225(DataRange)
a=size(DataRange);
ifa(1,1)-1
DataRange2DataRange';
end
LengthOfAtxy=length(DataRange);
numzpt--0;
nummax=0;
NumHP=LengthOfArry/50;
......................
阅读全部
|
hahhxxttxs06
贴于 2018年5月14日 09:53
hide
bbsi
%*********彩色图像压缩**********%
%****DCT 离散余弦变换**********%
clear,clc;
map=imread('me.jpg');
% map=rgb2gray(map);
map1=double(map);
for k=1:3%对R,G,B三个分量分别做变换,彩色图像一般为 m*n*3
g(:,:,k)=dct2(map1(:,:,k));
end
if abs(g)<0.1
g=0;
end
......................
阅读全部
|
yuancaimaiyi
贴于 2016年10月10日 09:34
hide
bbsi
alpha=4
L=100;
K=50;
R=1;
r1=R*sqrt(rand(1,L));
seta1=2*pi*rand(1,L);
x1=r1.*cos(seta1);
y1=r1.*sin(seta1);
% plot(x1,y1,'rd')
......................
阅读全部
|
bedynamic
贴于 2016年3月28日 12:28
hide
bbsi