Home > manopt > manifolds > essential > essential_flat.m

essential_flat

PURPOSE ^

Reshape a [3x6xk] matrix to a [3x3x2k] matrix

SYNOPSIS ^

function Hp = essential_flat(H)

DESCRIPTION ^

Reshape a [3x6xk] matrix to a [3x3x2k] matrix

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function Hp = essential_flat(H)
0002     %Reshape a [3x6xk] matrix to a [3x3x2k] matrix
0003     Hp = reshape(H,3,3,[]);
0004 end

Generated on Fri 30-Sep-2022 13:18:25 by m2html © 2005