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 6473031
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T06:25:02+00:00 2026-05-25T06:25:02+00:00

Possible Duplicate: Is it possible to show numbers in non-engineering format in Matlab? am

  • 0

Possible Duplicate:
Is it possible to show numbers in non-engineering format in Matlab?

am reading a set of unix timestamps from a file using dlmread

say
1311120481
1311120542
1311120603

in an array .
After reading all values are coverted to exponential . 1.311e+9 etc … But i need the actual timestamps to use it create a range around it.

Can anyone help how to get the values as it is ?

Thanks,

  • 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-05-25T06:25:03+00:00Added an answer on May 25, 2026 at 6:25 am

    This is an effect of how Matlab displays numbers rather than how it stores them. It has not actually converted the values to a new format; it just chooses to display them this way. You can change how Matlab displays values using the format command:

    >> x = [1311120481 1311120542 1311120603]
    
    x =
    
       1.0e+09 *
    
        1.3111    1.3111    1.3111
    
    >> format longg
    >> x 
    
    x =
    
                    1311120481                1311120542                1311120603
    

    Sometimes it is also useful to simply subtract some large, known offset:

    >> x - x(1)
    
    ans =
    
         0    61   122
    

    You can also use fprintf:

    >> fprintf('%d\n', x)
    1311120481
    1311120542
    1311120603
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Uploadify: show error message from HTTP response I am trying to get
Possible Duplicate: How to display row numbers in a ListView? Currently I am using
Possible Duplicate: Uploadify: show error message from HTTP response I am developing the application
Possible Duplicate: How can I format numbers as money in JavaScript? Format number to
Possible Duplicate: JavaScript: Getting random value from an array var numbers = new Array('1','2','4','5','6','7','8','9','10');
Possible Duplicate: How to show/hide a div on mouseover using jquery? I have a
Possible Duplicate: How to show Ajax requests in URL? Like in Gmail, using PHP
Possible Duplicate: How to choose the numbers shown on the axes of a plot
Possible Duplicate: Show line number in exception handling Can someone please tell me how
Possible Duplicate: Is it possible to show a Facebook app as a Page Tab

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.