Convert string to 256 Characters
조회 수: 7 (최근 30일)
이전 댓글 표시
How to create the Matlab source text which will be equivalent to this Fortran text? The character variable must be 256 characterts long
Character*256 TEXT
TEXT = 'Unformatted Data Version='
Print*, TEXT
END
Thanks!
댓글 수: 0
답변 (2개)
Walter Roberson
2024년 9월 27일
편집: Walter Roberson
2024년 9월 27일
TEXT = sprintf('%256s', 'Unformatted Data Version=');
fprintf(FILEID, "%s\n", TEXT)
댓글 수: 0
Ronit
2024년 9월 27일
편집: Ronit
2024년 9월 27일
In MATLAB, you can convert a string to a fixed length by padding it with spaces or truncating it to ensure it is exactly 256 characters long by using the "pad" function.
text = 'Unformatted Data Version=';
textUpdated = pad(text, 256);
disp(textUpdated);
Here is the documentation link for "pad" function:
I hope it helps your query!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!