필터 지우기
필터 지우기

Question using fprintf for words

조회 수: 4 (최근 30일)
benny
benny 2014년 11월 20일
편집: Image Analyst 2014년 11월 21일
I know how to use fprintf for a string of numbers but I was wondering if there is way to assign it to variable or words such as
A= ['jan','feb','march','april']
fprintf('% \n',A)
to get output
jan
feb
march
april

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 11월 20일
편집: Azzi Abdelmalek 2014년 11월 20일
A= {'jan','feb','march','april'};
fprintf('%s \n',A{:})

추가 답변 (1개)

Chad Greene
Chad Greene 2014년 11월 20일
Curly brackets and disp would be a different way:
A= {'jan','feb','march','april'}
disp(A)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by