How do I display the full code output while running a live script?

조회 수: 17 (최근 30일)
Vishwesh
Vishwesh 2025년 1월 11일
댓글: Vishwesh 2025년 1월 11일
I am a running a script that deals with long genome sequences. For debugging purposes, I want to display the full output that is presently too large for the livescript to handle. I am receiving a warning, "Warning: For increased performance, remaining outputs are not shown. Consider reducing the number of outputs.", and the rest of the output is curtailed. May I know, how I should get around this and display the full output?

답변 (1개)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2025년 1월 11일
If the output is too large, probably it is not viable to display all at once as of now. It is worth considering the following ways:
  • Display output data via figures. There are various display options - histogram(), heatmap(), box(), bar(), scatter(), plot(), etc.
  • Display your output data in sections instead of all at once.
  • Exporting outputs into a data file, e.g., *.txt, *.csv, *.xlsx, etc. Reviewing the output data file afterwards.
  • Employing table format for your output data and MATLAB can handle large table variable data
  • Employing MATLAB's display fundtions such as fprintf(), display()
  댓글 수: 1
Vishwesh
Vishwesh 2025년 1월 11일
The output had a lot of text data, I resolved the problem temporarily by publishing the output as an html file.
Thanks.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Data Distribution Plots에 대해 자세히 알아보기

제품


릴리스

R2024b

Community Treasure Hunt

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

Start Hunting!

Translated by