plot.matrix(rtiff)
plot.matrix()所属R语言包:rtiff
Overload the plot function for matrices
超载矩阵的绘图功能
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This is a simple S3 method for the plot function which takes a matrix, converts it to an RGB pixmap (by replicating it 3 times, once for each channel), and then plotting the resulting image.
这是一个简单的S3 plot函数的方法,这需要一个矩阵,它转换到RGB像素映像(通过复制它的3倍,一旦为每个通道),然后绘制所得的图像。
用法----------Usage----------
plot.matrix(x, ...)
参数----------Arguments----------
参数:x
A matrix representing an image raster.
图像光栅的矩阵。
参数:...
Additional arguments to send to plot.
额外的参数发送到图。
值----------Value----------
None.
无。
(作者)----------Author(s)----------
Eric Kort <eric.kort@vai.org>
实例----------Examples----------
tif <- readTiff(system.file("tiff", "jello.tif", package="rtiff"))
plot(tif@red)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|