how to select column from Table and create variable

Dear all,
Below is my code
clc;
close all;
clear all;
% Prepare DataSet
Trans = readtable('Ts_NData.csv');
Time = Trans(:, 1:4);
Los = Trans(:,5);
In this code Matlab create a new table not varibale. how i can create variable with this dataset.

 Respuesta aceptada

Stephan
Stephan el 23 de Abr. de 2019
Editada: Stephan el 23 de Abr. de 2019
Time = Trans{:,1:4};
Los = Trans{:,5};

Más respuestas (0)

Categorías

Productos

Versión

R2018a

Preguntada:

el 23 de Abr. de 2019

Comentada:

el 23 de Abr. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by