필터 지우기
필터 지우기

how to fprintf and disp on the same line

조회 수: 10 (최근 30일)
fawzeya bin tamim
fawzeya bin tamim 2020년 11월 23일
댓글: fawzeya bin tamim 2020년 11월 23일
i want this code to display 3 things on the same line but instead, i get this:
The number of capacitance should be 2
, i.e., 1/2 numbers of inductors
fprintf('The number of capacitance should be'); disp((length(inductance))/2); fprintf(', i.e., 1/2 numbers of inductors\n');

채택된 답변

Nora Khaled
Nora Khaled 2020년 11월 23일
disp always starts new line afterward.
you should only use fprintf and '\n' if you want to end the line
fprintf('The number of capacitance should be %f , i.e., 1/2 numbers of inductors\n',(length(inductance))/2)
use either %f or %d if the number is integer or float

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by