np-by-2 array
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Shivang Patel
el 9 de Feb. de 2015
Comentada: Lluis Roca
el 18 de En. de 2021
How to create np-by-2 array ?
I found matlab code related to chain code. and in that code author used np-by-2 array as a input of the function.
So. pls help me... Thanks in advance...
4 comentarios
dpb
el 9 de Feb. de 2015
Well, an "npx2 array" simply means an array of np rows by 2 columns.
Now what that array is supposed to be or represent we've no way of knowing; that's totally dependent upon the use the author of the code you've found has prescribed for it.
Simply "making" a npx2 array is as simple as
np=5; % say 5 rows
MyNPby2Array=rand(np,2); % create a 5x2 array of random values
You'll have to read the documentation supplied by or contact the author for the subject code you're trying to use to understand the specifics of that particular application.
Respuesta aceptada
Image Analyst
el 9 de Feb. de 2015
np probably means "number of points". There are np rows - one row for each point. And two columns. The first column is probably either the x coordinate, or the row of the image. The second column is either the y value, or the column of the matrix. Not sure how they specified it - what they are expecting. Make sure you don't make the common mistake of mixing up row, column with x,y. Remember row,column is y,x NOT x,y.
5 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre GPU Computing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!