vec2grid

버전 1.3.0.1 (3.57 KB) 작성자: Kelly Kearney
Reshapes vector data to a grid
다운로드 수: 1.8K
업데이트 날짜: 2021/9/23

vec2grid.m Documentation

View vec2grid on File Exchange

This is a simple utility to rearrange a list of data points into an ndgrid-style grid. It allows the original data points to be listed in any order, and allows for missing grid points (which become NaNs in the final grid).

Note: In order to support higher dimensional data, I opted to return data in ndgrid format rather than meshgrid format. This means output will often need to be transposed to be used with plotting functions like surf, pcolor, etc.

Syntax

[xg, yg] = vec2grid(x1, x2, ..., y);
[xg, yg] = vec2grid(xy);
[xg1, xg2, ... yg] = vec2grid(...);

Example

Let's assume we have a list of 2D data points, with a corresponding vector of z-data for each x-y point. The data points are stored in random order, and a few points are missing from the full grid.

[x,y] = ndgrid(1:4,1:5);
z = (1:numel(x))';

order = randperm(numel(x), numel(x)-3)';
x = x(order); y = y(order); z = z(order);

[x y z]
ans =

     1     3     9
     3     5    19
     4     3    12
     3     3    11
     2     2     6
     2     4    14
     4     5    20
     1     5    17
     2     3    10
     2     5    18
     4     2     8
     3     2     7
     3     4    15
     2     1     2
     1     1     1
     1     4    13
     3     1     3

We use vec2grid to return the data to a gridded format.

[xg,yg,zg] = vec2grid([x y z])
xg =

     1
     2
     3
     4


yg =

     1
     2
     3
     4
     5


zg =

     1   NaN     9    13    17
     2     6    10    14    18
     3     7    11    15    19
   NaN     8    12   NaN    20

인용 양식

Kelly Kearney (2024). vec2grid (https://github.com/kakearney/vec2grid-pkg), GitHub. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2007a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

vec2grid

GitHub 디폴트 브랜치를 사용하는 버전은 다운로드할 수 없음

버전 게시됨 릴리스 정보
1.3.0.1

linked GitHub readme

1.3.0.0

Corrected github-renaming of entry

1.2.0.0

Linked to GitHub repository

1.1.0.0

Added support for unlimited dimensions in input data.

1.0.0.0

이 GitHub 애드온의 문제를 보거나 보고하려면 GitHub 리포지토리로 가십시오.
이 GitHub 애드온의 문제를 보거나 보고하려면 GitHub 리포지토리로 가십시오.