摘要: M=5;N=4;%M、N选择 rgb=imread('picture.jpg'); [m,n,c]=size(rgb); xb=round(m/M)*M;yb=round(n/N)*N;%找到能被整除的M,N rgb=imresize(rgb,[xb,yb]); [m,n,c]=size(rgb); 阅读全文
posted @ 2021-11-13 21:01 KYZH 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 双y坐标,条形图+折线图,y轴刻度值离散化 plot()与semilogy()对比 效果: 程序: clear all;clc [num,txt,raw]=xlsread('matlab绘图数据.xlsx'); %读入数据 year=num(:,1); x=num(:,2); ux=num(:,3) 阅读全文
posted @ 2021-11-13 19:19 KYZH 阅读(83) 评论(0) 推荐(0) 编辑
摘要: clear;clc format; x0=[0 100 0 0]; % 迭代初始值 eps = 0.00001; % 定位精度要求 for i = 1:20 f = double(subs(fun(x0),{'x1' 'x2' 'x3' 'x4'},{x0(1) x0(2) x0(3) x0(4)} 阅读全文
posted @ 2021-11-13 19:15 KYZH 阅读(499) 评论(0) 推荐(0) 编辑