snabbasi
snabbasi

Reputation: 129

MATLAB's 'meshgrid' in C

i like to use a library or function in C which could perform the same function as performed by meshgrid in MATLAB.

looking for support.

Upvotes: 0

Views: 3145

Answers (1)

Andrei
Andrei

Reputation: 5005

I don't see why you need a function or library for this.

This says "[X,Y] = meshgrid(x,y) transforms the domain specified by vectors x and y into arrays X and Y, which can be used to evaluate functions of two variables"

If the vector is something like "a:b" then you can use a for statement to create the appropriate matrix.

If you post more details then maybe we can help you more!

Upvotes: 4

Related Questions