okomarov/tableutils

Fixes some methods of the table() class and extends it with additional features
233 descargas
Actualizado 15 feb 2017

Description
This set of Matlab functions fixes some methods of the table() class and extends it with additional features.
Installation

Unzip the archive;
With Matlab, cd into the unzipped folder
run install_tableutils

WARNING: requires write permissions to `matlabroot/toolbox/matlab/datatypes/@table`. It overwrites some table methods, listed below, with fixed/enhanced versions. The old table() methods are backed up in its private subfolder and their name is suffixed with Old, e.g. disp.m becomes dispOld.m.

List of features

* disp() - implements a buffered version of the native display method. Now, your pc will not freeze until the dawn of time if you forget a ; in the command window after t = table(1e7,1), which is only a 76 MB variable;
* unstack() - significantly speeds up the native method with a minimalistic change between lines 240 and 250 (original code left commented out);
* varfun() - adds a Name/Value pair to the original method, i.e. 'RenameVariables' - false/true(default). Does not force you to change the variable names as the native version;
* renameVarNames() - new method that renames variable names;
* convertColumn() - new method that changes the class of each column (variable);
* classVarName - new method that returns the class name of each column (variable).

Other methods

The following functions do not get copied over to the native @table folder and serve as general purpose utilities for the new table methods.

* isrowchar() - Determines whether input is a string (1 by N char);
* in() - Test for inclusion, i.e. [],[),(] or (), within some bounds;
* xstr2num() - Converts the digit-part from an 'xNumber' to a numeric type. Especially useful to quickly recover the original values after unstacking a table, i.e. x32443 becomes 32443.

For detailed descriptions, syntax and examples, see the help within each .m file.

Citar como

Oleg Komarov (2024). okomarov/tableutils (https://github.com/okomarov/tableutils), GitHub. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2014b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Tables en Help Center y MATLAB Answers.
Etiquetas Añadir etiquetas

Community Treasure Hunt

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

Start Hunting!

No se pueden descargar versiones que utilicen la rama predeterminada de GitHub

Versión Publicado Notas de la versión
2.1.0.0

minor update to description

2.0.0.0

Edited description. Complete change of the installation process

1.3.0.0

Updated description

1.2.0.0

Updated description

1.1.0.0

Updated description

1.0.0.0

Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.
Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.