搜索资源列表
Radar
- 设计一个matlab雷达信号仿真界面程序。(提示:例如可以根据选择产生一个不同类型噪声(均匀分布、高斯分布等类型),并在界面中显示该噪声时域图形,并能根据要求画出该噪声的自相关、FFT等信号处理后的结果。)-Design a matlab radar simulation interface program. (Hint: for example, can choose to generate a different type of noise (uniform distribution, Ga
matlab-pdf
- 通过matlab代码画出的各种概率密度函数图形仅供参考-By matlab code to draw the beta probability density function graph for reference only
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
plotxx
- matlab绘制双x坐标图形。与plotyy类似,但是前者不共用x坐标,而可在一个图中绘制x,y数据均不同的两组数。-matlab draw double x coordinate graph. And plotyy similar, but the former does not share the x-coordinate, which may be plotted in a graph x, y are two different sets of data number.
erciqumian2
- 用matlab实现二次曲面图绘制,用来绘制曲线图-Draw a graph quadric
zhexiantu
- matlab画折线图,通过折线图可以直观显示误差信息。-matlab draw a line chart, line graph can be visualized by the error message.
xingxingquxian
- 利用matlab软件得到二维的星形曲线,画出其图像-Using matlab software is a two-dimensional star graph, draw its image
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
zhexiantu
- 运用matlab编写的绘制图形折线图的源代码,内容比较简单-Source code using matlab prepared to draw graphics line graph, the content is relatively simple
function plot
- 绘制函数的图形 1) x~[0, 30] 2) x,y~[-2, 2] % 二维曲线 x = 0:30; % 冒号的功能… y = exp(-x/10).*sin(x); % 向量运算,点号的功能 plot(x, y) % 绘制二维曲线