Main Content

updateWorldPoints

Update world points in world point set

Since R2020b

Description

example

wpSet = updateWorldPoints(wpSet,pointIndices,worldPoints) updates the locations of the world points at the specified indices pointIndices of the world point set wpSet.

Examples

collapse all

Generate 3-D world points.

worldPoints = rand(100,3);

Create a worldpointset object.

wpSet = worldpointset;

Add the world points to the world point set.

wpSet = addWorldPoints(wpSet,worldPoints);

Update the first 50 world points with new locations.

pointIndices = 1:50;
newWorldPoints = worldPoints(pointIndices,:) + [0 0 5];
wpSet = updateWorldPoints(wpSet,pointIndices,newWorldPoints);

Input Arguments

collapse all

World point set, specified as a worldpointset object.

World point indices, specified as an M-element column vector of integers. M is the number of world points to update in the worldpointset object.

World points coordinates, specified as an M-by-3 matrix in the form [x y z].

Output Arguments

collapse all

World point set, returned as a worldpointset object.

Extended Capabilities

C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.

Version History

Introduced in R2020b