<< NL_F_GammaMatrix NL_F: Function NL_F_Histogram >>

NARVAL >> NL_F: Function > NL_F_GridXY

NL_F_GridXY

Perform the coordinates of a regular grid.

Calling Sequence

[X,Y] = NL_F_GridXY(Xm,XM,Ym,YM,L,C)

Arguments

Xm :

minimal x-coordinate.

XM :

maximal x-coordinate.

Ym :

minimal y-coordinate.

YM :

maximal y-coordinate.

L :

number of lines.

C :

number of columns.

X :

x-coordinate vector.

Y :

y-coordinate vector.

Description

NL_F_GridXY performs the coordinates [X,Y] of a regular grid composed by L lines and C columns linearly spaced in [Xm:XM] and [Ym:YM].

Examples

//grid
mx=0;
Mx=6;
my=0;
My=6;
l=50;
c=50;
[gx,gy]=NL_F_GridXY(mx,Mx,my,My,l,c);//application of NL_F_GridXY

Report an issue
<< NL_F_GammaMatrix NL_F: Function NL_F_Histogram >>