使用递归公式生成实数序列

时间:2019-03-06 14:07:28

标签: matlab random

我在Matlab中要完成两个与伪随机数生成器有关的任务。 1.生成锯齿波,但是不能使用matlab锯齿函数。 2.使用递归公式生成实数序列。

There is my problem

我已经完成了第一项任务,我认为这很好:

float imageWidth = bitmap.Width;
float imageHeight = bitmap.Height;
float width = yourscreenWidth;
float heigth =  yourscreenHeight ;           

var W= width / heigth / (imageWidth / imageHeight);
var W2 = rect.Width() / widt * W;
var H = rect.Height() / heigth;
var cropImageWidth = imageWidth * W2 ;
var cropImageHeight = imageHeight * H ;
var cropImageX = (imageWidth - cropImageWidth) / 2;
var cropImageY = (imageHeight - cropImageHeight) / 2;
Bitmap imageCropped = Bitmap.CreateBitmap(bitmap, (int)cropImageX, (int)cropImageY, (int)cropImageWidth, (int)cropImageHeight);

There is a result:

但是我不知道该怎么做第二个任务。有人可以帮我吗?

0 个答案:

没有答案