Filter löschen
Filter löschen

how to convert char into text??

30 Ansichten (letzte 30 Tage)
Muhammad RSMY
Muhammad RSMY am 28 Dez. 2017
Beantwortet: Muhammad RSMY am 28 Dez. 2017
hi guys
I have files with same name but different extension numbers
for example
filename='file_';
fileExt='22'
name=[filename,fileExt];
the output name
name='file_22'
but I need the output just as text, I am planning to call function from this output
% I need the output to like
name=file_22
any possible ways, thanks
  2 Kommentare
Walter Roberson
Walter Roberson am 28 Dez. 2017
Do you mean that you need to access a variable named file_22 in that statement?
Muhammad RSMY
Muhammad RSMY am 28 Dez. 2017
yes... any possibility

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Birdman
Birdman am 28 Dez. 2017
You can use str2func command for this purpose.
fun=str2func(name)
By this you will create a function handle and then you may call it by typing
fun(..,..)
  3 Kommentare
Birdman
Birdman am 28 Dez. 2017
Ok, consider you wrote a function called summing, which sums two numbers.
function y=summing(a,b)
y=a+b;
end
Then, write the following lines:
name='summing';
fun=str2func(name);
y=fun(1,2)
which will result in 3.
Muhammad RSMY
Muhammad RSMY am 28 Dez. 2017
Thanks so much, problem is solved

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (2)

Walter Roberson
Walter Roberson am 28 Dez. 2017
  1 Kommentar
Muhammad RSMY
Muhammad RSMY am 28 Dez. 2017
Bearbeitet: Muhammad RSMY am 28 Dez. 2017
difficult for me to understand it, could you explain please,, thanks after all

Melden Sie sich an, um zu kommentieren.


Muhammad RSMY
Muhammad RSMY am 28 Dez. 2017
Thanks Birdman and Walter Roberson for your kind support

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by