Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8030089
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T00:39:18+00:00 2026-06-05T00:39:18+00:00

I have a text file containing thousands of attributes (each column indicates an attribute)

  • 0

I have a text file containing thousands of attributes (each column indicates an attribute) and a column that shows the labels of each row.All data is numeric except the last column which is the labels. This column is string. I want to use matlab classification functions such as gscatter() to classify the data. The problem is that when I use load filename in matlab to load my data I get this error (in which “no” is one of the lables)

Unknown text on line number 1 of ASCII file C:\Program Files\MATLAB\R2011b\train\train.txt
“no”.

In fact I do not know how to load my data in matlab to be able to use matlab functions to classify the data.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T00:39:20+00:00Added an answer on June 5, 2026 at 12:39 am

    Here is an example

    train.txt

    1,2,3,4,5,6,no
    2,3,4,5,6,7,yes
    

    myLoadScript.m

    numAttribs = 6;        %# number of attributes (excluding the label)
    frmt = [repmat('%f ',1,numAttribs) '%s'];
    fid = fopen('train.txt', 'rt');
    C = textscan(fid, frmt, 'Delimiter',',', 'CollectOutput',1);
    fclose(fid);
    

    The result:

    >> C{1}
    ans =
         1     2     3     4     5     6
         2     3     4     5     6     7
    
    >> C{2}
    ans = 
        'no'
        'yes'
    

    Should be easy to adapt to work on your specific file format…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a text file containing ~300k rows. Each row has a varying number
I have a text file containing three columns of numbers; one column each for
I have a text file containing the row numbers of the rows that should
I have a text file containing a number of records. Each record is stored
Hi I have made a program that reads a text file containing words and
I have text file, names.txt, with every row containing a last name: Smith Johnson
I have a text file containing some records. Each record is splitted in 4
I have a big text file containing data that needs to be extracted and
I have a text file containing data/fields which are separated by exact column no.
I have a function that reads a text file containing two lines, it reads

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.