Meshgrid or other structure?
이전 댓글 표시
Is there any way I can code a meshgrid to get this type of data :

I'm trying to create a 2D 'table', I guess, where on the x axis, the values go from -96 to +96 by step of 4.
And the same on the Y axis, from -96 to +96 by step of 4.
I experimented with meshgrid, like this, but I'm not getting this result at all. Here's my code :
Axis_A = linspace(-96, 96, 49);
[x,y] = meshgrid(Axis_A,Axis_A);
I was considering using a loop but... that may be inefficient...
채택된 답변
추가 답변 (1개)
Axis_A = (-96:8:96)/2;
mgrid = Axis_A+Axis_A';
would give you that matrix.
As would
[x,y] = meshgrid(Axis_A);
mgrid = x+y;
카테고리
도움말 센터 및 File Exchange에서 Particle & Nuclear Physics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!