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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T01:02:53+00:00 2026-05-28T01:02:53+00:00

I have matlab function that calls a Perl script which converts a large text

  • 0

I have matlab function that calls a Perl script which converts a large text file to binary for use in Matlab. See here for Perl script details: Parsing unsorted data from large fixed width text

My Matlab function looks something like this

function convertMyData(dataFileName)

%Do some checks on the data
disp('Done Checking Stuff!');

%Process data file with Perl
perl('myPerlScript.pl',dataFileName)

% More Processing on the Binary output from Perl
disp('All Done!');

In the perl script are some print statements showing the progress of the script since it can take several minutes to convert. Something like this:

while ($line = <INFILE>) {
    if ($lineCount % 100000 == 0){ #Display Progress every 100,000 lines
        print "On Line: ".$lineCount."\n";
    }
    #PROCESS LINE DATA HERE 
    $lineCount ++; 
} # END WHILE <INFILE>
print "Finished Reading: ".$lineCount." Lines\n";

The problem is that in Matlab all of my “On Line: XXXXX” print statements just get dumped to Matlab’s default ans variable once the script completes instead of actually displayed at the prompt like Matlab’s disp() function.

So how (if possible) do you get an external program’s output to show up at the Matlab prompt while it is running?

  • 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-28T01:02:54+00:00Added an answer on May 28, 2026 at 1:02 am

    I don’t think you can do it. MATLAB passes the control to perl interpreter and then just get back the results.

    There is one workaround that worked for me. First add local $|=1; inside your perl script to turn on STDOUT autoflush. Before any output to STDOUT. (See, for example, here for more details on flushing buffer.) Then call perl using system function:

    system(['"path_to_perl\perl.exe" test.pl ' dataFileName]);
    

    Double-quotes are important if your perl interpreter is located in a path with spaces.

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

Sidebar

Related Questions

I have a Matlab script that requires a function in a DLL, and calls
I have an embedded Matlab function that itself calls other embedded Matlab functions and
I have discovered through trial and error that the MATLAB engine function is not
I have a function in MATLAB which takes another function as an argument. I
I have to write a Matlab script that does this: The input is 2
I have a MATLAB function that finds charateristic points in a sample. Unfortunatley it
Does MATLAB have a function/operator that indicates the type of a variable (similar to
I have a MATLAB function that needs access to the data of some largeFile.mat.
I have a matlab function img_process that requires the following parameters : image_name intensity
I have a Matlab script consisting of several cells that should all be able

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.