필터 지우기
필터 지우기

how to convert text file as it was written .m file to call functions?

조회 수: 2 (최근 30일)
I have bunch of function orders written in text file.
For example text file contains
"move(4,5)
degrade(3)
plussum(6,7)"
and those are supposed to be function name and variables.
I want matlab to read that text file as it was written im .m file to call functions with variables

채택된 답변

Walter Roberson
Walter Roberson 2024년 4월 22일
SS = fileread(NAME_OF_FILE);
eval(SS)

추가 답변 (1개)

Steven Lord
Steven Lord 2024년 4월 22일
If all the text in the file consists of valid MATLAB code and comments, just change the extension from .txt to .m.
  댓글 수: 1
Melih Furkan SEN
Melih Furkan SEN 2024년 4월 25일
Thats not what I meant to ask.
some part of code will change depending of user requires.
If user wants txt file named "A.txt" to run, I want code to copy the txt strings into certain (for example 70th line of main code) and use that "A.txt" as it was line of code

댓글을 달려면 로그인하십시오.

카테고리

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

태그

제품


릴리스

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by