help with dynamic rename (and run) of m-file

조회 수: 2 (최근 30일)
Brantosaurus
Brantosaurus 2022년 11월 13일
댓글: Brantosaurus 2022년 11월 13일
I have two self contained files, one i need to call several times from a script. It is named deck.m and takes the form x=ABC(loads of input arguments). Associated with it is a p-file, ABC.p.
I simply call it in the script as below and things work fine.
script
deck
script
deck
:
Unfortunately the deck name often changes. Is there a dynamic way of renaming (and running) it in the script?
Something like:
name = 'deck' (thinks its a variable!) = deck (attempt to execute script as a function!)
script
name
script
name.
No luck so far :(
  댓글 수: 2
Christopher Stapels
Christopher Stapels 2022년 11월 13일
Are you doing this in ThingSpeak? I dont think you can save files in ThingSpeak, so I suspect not. But I see you added the tag "ThingSpeak" to this post
Brantosaurus
Brantosaurus 2022년 11월 13일
MATLAB, sorry i must have forgot to indicate this

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

채택된 답변

Walter Roberson
Walter Roberson 2022년 11월 13일
이동: Walter Roberson 2022년 11월 13일
is deck a script or a function with no parameters?
If it is a script see run()
If it is a function then create a function handle and invoke the handle each time
  댓글 수: 1
Brantosaurus
Brantosaurus 2022년 11월 13일
It looks like a function which resides in the p-file. All i can see in the deck are its input arguments.
Your suggestion for treating it as a script works though, so i am happy with that.
Thank you once again.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by