Printing in the command window

2 ビュー (過去 30 日間)
kajalschopra
kajalschopra 2015 年 7 月 27 日
コメント済み: Walter Roberson 2018 年 11 月 16 日
I have created a .m file.
In the .m file, I have the following code;
N_C=xlsread('C:\Users\Kajal Chopra\vibrations\free_vibrations_program\matlab_input_free_vibrations_1','Sheet1');
t=1;
I want to print the values of N_C in the command window.
When I type N_C (or even t) in the command window , nothing happens.
How can I print the value of N_C in the command window?

採用された回答

Walter Roberson
Walter Roberson 2015 年 7 月 27 日
disp(N_C)
If the result is empty then check
isempty(N_C)
  1 件のコメント
kajalschopra
kajalschopra 2015 年 7 月 27 日
Thanks a lot.

サインインしてコメントする。

その他の回答 (1 件)

Der Die
Der Die 2018 年 11 月 13 日
Hi,
I would like to ask you how to print in command window like
result =
45464.1324564 56464.321312321231313 4654564.54544654654
but to get the numbers (with long format ) in one row not to get it in columns because of long number.
For an example to get information in command window as we define it for parameter . For an example:
A=A_param; %(A_param=1)
in command window is :
A =
1
  1 件のコメント
Walter Roberson
Walter Roberson 2018 年 11 月 16 日
I am not sure what you are asking, but if you have format long in effect, then
A = A_param(:).'
This will work whether A_param is a scalar, a row vector, a column vector, a 2D array...

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeWhos についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by