搜索资源列表
ColourChange
- 彩色变换:对给定的一幅RGB原始图像(如bmp格式),给出并显示该图的R、G、B单色图像,绘制R、G、B图像各自的直方图;将RGB方式转换为HIS方式,再给出并显示该图的HIS三个分量的图像。-Colour change: given an RGB on the original image (such as bmp format) and displays the map given R, G, B color image, draw R, G, B histogram of each ima
Screenshot-using-matlab
- 用 MATLAB 命令将 simulink 示波器的图形画出 毕业论文答辩已经结束很长时间了,现在总结一下我在做毕业论文时的用 MATLAB 命令画出 simulink 示波器图形的一点方法-Using MATLAB command simulink oscilloscope graph draw Thesis defense has ended a long time, and now sum up with MATLAB thesis when I was doing Os
function plot
- 绘制函数的图形 1) x~[0, 30] 2) x,y~[-2, 2] % 二维曲线 x = 0:30; % 冒号的功能… y = exp(-x/10).*sin(x); % 向量运算,点号的功能 plot(x, y) % 绘制二维曲线