Email: helpdesk@telkomuniversity.ac.id

This Portal for internal use only!

  • My Download
  • Checkout
Application Package Repository Telkom University
All Categories

All Categories

  • Visual Paradigm
  • IBM
  • Adobe
  • Google
  • Matlab
  • Microsoft
    • Microsoft Apps
    • Analytics
    • AI + Machine Learning
    • Compute
    • Database
    • Developer Tools
    • Internet Of Things
    • Learning Services
    • Middleware System
    • Networking
    • Operating System
    • Productivity Tools
    • Security
    • VLS
      • Office
      • Windows
  • Opensource
  • Wordpress
    • Plugin WP
    • Themes WP
  • Others

Search

0 Wishlist

Cart

Categories
  • Microsoft
    • Microsoft Apps
    • Office
    • Operating System
    • VLS
    • Developer Tools
    • Productivity Tools
    • Database
    • AI + Machine Learning
    • Middleware System
    • Learning Services
    • Analytics
    • Networking
    • Compute
    • Security
    • Internet Of Things
  • Adobe
  • Matlab
  • Google
  • Visual Paradigm
  • WordPress
    • Plugin WP
    • Themes WP
  • Opensource
  • Others
More Categories Less Categories
  • Get Pack
    • Product Category
    • Simple Product
    • Grouped Product
    • Variable Product
    • External Product
  • My Account
    • Download
    • Cart
    • Checkout
    • Login
  • About Us
    • Contact
    • Forum
    • Frequently Questions
    • Privacy Policy
  • Forum
    • News
      • Category
      • News Tag

iconTicket Service Desk

  • My Download
  • Checkout
Application Package Repository Telkom University
All Categories

All Categories

  • Visual Paradigm
  • IBM
  • Adobe
  • Google
  • Matlab
  • Microsoft
    • Microsoft Apps
    • Analytics
    • AI + Machine Learning
    • Compute
    • Database
    • Developer Tools
    • Internet Of Things
    • Learning Services
    • Middleware System
    • Networking
    • Operating System
    • Productivity Tools
    • Security
    • VLS
      • Office
      • Windows
  • Opensource
  • Wordpress
    • Plugin WP
    • Themes WP
  • Others

Search

0 Wishlist

Cart

Menu
  • Home
    • Download Application Package Repository Telkom University
    • Application Package Repository Telkom University
    • Download Official License Telkom University
    • Download Installer Application Pack
    • Product Category
    • Simple Product
    • Grouped Product
    • Variable Product
    • External Product
  • All Pack
    • Microsoft
      • Operating System
      • Productivity Tools
      • Developer Tools
      • Database
      • AI + Machine Learning
      • Middleware System
      • Networking
      • Compute
      • Security
      • Analytics
      • Internet Of Things
      • Learning Services
    • Microsoft Apps
      • VLS
    • Adobe
    • Matlab
    • WordPress
      • Themes WP
      • Plugin WP
    • Google
    • Opensource
    • Others
  • My account
    • Download
    • Get Pack
    • Cart
    • Checkout
  • News
    • Category
    • News Tag
  • Forum
  • About Us
    • Privacy Policy
    • Frequently Questions
    • Contact
Home/Matlab/Variable Names not being read into uitable using readmatrix

Variable Names not being read into uitable using readmatrix

PuTI / 2025-01-28
Variable Names not being read into uitable using readmatrix
Matlab News

Hi, I am trying to read a csv files into a uitable and am having problems reading the variable names in. The csv was saved using writetable and the first few lines are here:
Idx,pos,sep1,sep2,avgsep,deltaPix
1,101.1,1799.918,1868.078,1833.998,0.769999999999
2,101.2,1801.527,1868.695,1835.111,1.88299999999
3,101.3,1802.028,1869.09,1835.559,2.3309999999
4,101.4,1801.645,1869.739,1835.692,2.46399999999
5,101.5,1802.023,1869.453,1835.738,2.50999999999

This is my code to read the file :
table=app.UItable;
C=readtable(fullpath,’VariableNamingRule’,’preserve’,’FileType’,’text’);
C=table2array(C); % Wasn’t sure if I needed this
opts = detectImportOptions(fullpath)
opts.VariableNames
ReportMessage(app,’Opened Successfully’)
table.Data=C;
Its not reading in the variable name

The opts.variablenames is showing the variable names are present
ans =

1×6 cell array

{‘Idx’} {‘pos’} {‘sep1’} {‘sep2’} {‘avgsep’} {‘deltaPix’}

and opts is:
opts =

DelimitedTextImportOptions with properties:

Format Properties:
Delimiter: {‘,’}
Whitespace: ‘bt ‘
LineEnding: {‘n’ ‘r’ ‘rn’}
CommentStyle: {}
ConsecutiveDelimitersRule: ‘split’
LeadingDelimitersRule: ‘keep’
TrailingDelimitersRule: ‘ignore’
EmptyLineRule: ‘skip’
Encoding: ‘UTF-8’

Replacement Properties:
MissingRule: ‘fill’
ImportErrorRule: ‘fill’
ExtraColumnsRule: ‘addvars’

Variable Import Properties: Set types by name using setvartype
VariableNames: {‘Idx’, ‘pos’, ‘sep1’ … and 3 more}
VariableTypes: {‘double’, ‘double’, ‘double’ … and 3 more}
SelectedVariableNames: {‘Idx’, ‘pos’, ‘sep1’ … and 3 more}
VariableOptions: Show all 6 VariableOptions
Access VariableOptions sub-properties using setvaropts/getvaropts
VariableNamingRule: ‘modify’

Any reason why the variable names aren’t being populated into the uitable?
ThanksHi, I am trying to read a csv files into a uitable and am having problems reading the variable names in. The csv was saved using writetable and the first few lines are here:
Idx,pos,sep1,sep2,avgsep,deltaPix
1,101.1,1799.918,1868.078,1833.998,0.769999999999
2,101.2,1801.527,1868.695,1835.111,1.88299999999
3,101.3,1802.028,1869.09,1835.559,2.3309999999
4,101.4,1801.645,1869.739,1835.692,2.46399999999
5,101.5,1802.023,1869.453,1835.738,2.50999999999

This is my code to read the file :
table=app.UItable;
C=readtable(fullpath,’VariableNamingRule’,’preserve’,’FileType’,’text’);
C=table2array(C); % Wasn’t sure if I needed this
opts = detectImportOptions(fullpath)
opts.VariableNames
ReportMessage(app,’Opened Successfully’)
table.Data=C;
Its not reading in the variable name

The opts.variablenames is showing the variable names are present
ans =

1×6 cell array

{‘Idx’} {‘pos’} {‘sep1’} {‘sep2’} {‘avgsep’} {‘deltaPix’}

and opts is:
opts =

DelimitedTextImportOptions with properties:

Format Properties:
Delimiter: {‘,’}
Whitespace: ‘bt ‘
LineEnding: {‘n’ ‘r’ ‘rn’}
CommentStyle: {}
ConsecutiveDelimitersRule: ‘split’
LeadingDelimitersRule: ‘keep’
TrailingDelimitersRule: ‘ignore’
EmptyLineRule: ‘skip’
Encoding: ‘UTF-8’

Replacement Properties:
MissingRule: ‘fill’
ImportErrorRule: ‘fill’
ExtraColumnsRule: ‘addvars’

Variable Import Properties: Set types by name using setvartype
VariableNames: {‘Idx’, ‘pos’, ‘sep1’ … and 3 more}
VariableTypes: {‘double’, ‘double’, ‘double’ … and 3 more}
SelectedVariableNames: {‘Idx’, ‘pos’, ‘sep1’ … and 3 more}
VariableOptions: Show all 6 VariableOptions
Access VariableOptions sub-properties using setvaropts/getvaropts
VariableNamingRule: ‘modify’

Any reason why the variable names aren’t being populated into the uitable?
Thanks Hi, I am trying to read a csv files into a uitable and am having problems reading the variable names in. The csv was saved using writetable and the first few lines are here:
Idx,pos,sep1,sep2,avgsep,deltaPix
1,101.1,1799.918,1868.078,1833.998,0.769999999999
2,101.2,1801.527,1868.695,1835.111,1.88299999999
3,101.3,1802.028,1869.09,1835.559,2.3309999999
4,101.4,1801.645,1869.739,1835.692,2.46399999999
5,101.5,1802.023,1869.453,1835.738,2.50999999999

This is my code to read the file :
table=app.UItable;
C=readtable(fullpath,’VariableNamingRule’,’preserve’,’FileType’,’text’);
C=table2array(C); % Wasn’t sure if I needed this
opts = detectImportOptions(fullpath)
opts.VariableNames
ReportMessage(app,’Opened Successfully’)
table.Data=C;
Its not reading in the variable name

The opts.variablenames is showing the variable names are present
ans =

1×6 cell array

{‘Idx’} {‘pos’} {‘sep1’} {‘sep2’} {‘avgsep’} {‘deltaPix’}

and opts is:
opts =

DelimitedTextImportOptions with properties:

Format Properties:
Delimiter: {‘,’}
Whitespace: ‘bt ‘
LineEnding: {‘n’ ‘r’ ‘rn’}
CommentStyle: {}
ConsecutiveDelimitersRule: ‘split’
LeadingDelimitersRule: ‘keep’
TrailingDelimitersRule: ‘ignore’
EmptyLineRule: ‘skip’
Encoding: ‘UTF-8’

Replacement Properties:
MissingRule: ‘fill’
ImportErrorRule: ‘fill’
ExtraColumnsRule: ‘addvars’

Variable Import Properties: Set types by name using setvartype
VariableNames: {‘Idx’, ‘pos’, ‘sep1’ … and 3 more}
VariableTypes: {‘double’, ‘double’, ‘double’ … and 3 more}
SelectedVariableNames: {‘Idx’, ‘pos’, ‘sep1’ … and 3 more}
VariableOptions: Show all 6 VariableOptions
Access VariableOptions sub-properties using setvaropts/getvaropts
VariableNamingRule: ‘modify’

Any reason why the variable names aren’t being populated into the uitable?
Thanks readmatrix, uitable, variablenames MATLAB Answers — New Questions

​

Tags: matlab

Share this!

Related posts

2019b download installer
2025-05-16

2019b download installer

I want to build a double pendulum system in Simulink but am getting errors relating to the tolerance and step size
2025-05-16

I want to build a double pendulum system in Simulink but am getting errors relating to the tolerance and step size

How to model a simple brake in Simscape (mechanical rotational domain)?
2025-05-16

How to model a simple brake in Simscape (mechanical rotational domain)?

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

Categories

  • Matlab
  • Microsoft
  • News
  • Other
Application Package Repository Telkom University

Tags

matlab microsoft opensources
Application Package Download License

Application Package Download License

Adobe
Google for Education
IBM
Matlab
Microsoft
Wordpress
Visual Paradigm
Opensource

Sign Up For Newsletters

Be the First to Know. Sign up for newsletter today

Application Package Repository Telkom University

Portal Application Package Repository Telkom University, for internal use only, empower civitas academica in study and research.

Information

  • Telkom University
  • About Us
  • Contact
  • Forum Discussion
  • FAQ
  • Helpdesk Ticket

Contact Us

  • Ask: Any question please read FAQ
  • Mail: helpdesk@telkomuniversity.ac.id
  • Call: +62 823-1994-9941
  • WA: +62 823-1994-9943
  • Site: Gedung Panambulai. Jl. Telekomunikasi

Copyright © Telkom University. All Rights Reserved. ch

  • FAQ
  • Privacy Policy
  • Term

This Application Package for internal Telkom University only (students and employee). Chiers... Dismiss