我想将我的图形的起点(在x轴和y轴上)设置为零。我使用了xlim()和ylim()函数,但都无济于事。我已经附上了我的代码如下。
setwd ("D:/Rcode/Assignment_2") #setting up the working directory
LightGrowth1 <- read.csv ("LightGrowth-1.csv") #reading the file and attaching it to a dataframe
Light <- LightGrowth1$light #attach our light valu
我正在绘制x和y坐标,以及一些图像,但是与轴相比,图像变得非常大。我如何设置数字分辨率或大小,使图像可以适合一个小的轴范围,而不是覆盖整个图形,并修改轴的范围。
图中没有图像(见下文)。
Matlab代码:
for l = 1:size of array
colormap('gray');
imagesc(X,Y, imrotate(imresize(img,[100 100]),180));
end