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일

1 개 추천

A= {'jan','feb','march','april'};
fprintf('%s \n',A{:})

추가 답변 (1개)

Chad Greene
Chad Greene 2014년 11월 20일

1 개 추천

Curly brackets and disp would be a different way:
A= {'jan','feb','march','april'}
disp(A)

카테고리

도움말 센터File Exchange에서 Characters and Strings에 대해 자세히 알아보기

태그

질문:

2014년 11월 20일

편집:

2014년 11월 21일

Community Treasure Hunt

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

Start Hunting!

Translated by