Dear Community,
In a string like: 'sinh(x).*f.*n'
I want to replace the n with X_Model(1). Using strrep however I end up with
siX_Model(1)h.*f.*X_Model(1)
which means that the n in sinh was also found to be an n and replaced. How can I make it exclusiv, so only if it matches exactly the replacement does take place? In a Matlab Script using 'Find and Replace' I can make this happen when I click 'Match Case' and 'Whole Word', so I want to have this functionality in a function.
Thanks and best Regards Ravi

 채택된 답변

Sean de Wolski
Sean de Wolski 2016년 10월 18일
편집: Sean de Wolski 2016년 10월 18일

0 개 추천

This can be done elegantly and safely with Symbolic Math Toolbox
syms x f n model(ix)
expr = sinh(x).*f.*n
subs(expr,n,model(1))

댓글 수: 2

Ravi Goyal
Ravi Goyal 2016년 10월 19일
Thanks Sean,
Would you know of any way not using the Symbolic Math Toolbox? Best Regards Ravi
Sean de Wolski
Sean de Wolski 2016년 10월 19일
Not a safe way that is completely fool proof.

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

추가 답변 (1개)

Jan
Jan 2016년 10월 19일
편집: Jan 2016년 10월 19일

0 개 추천

Str = 'sinh(x).*f.*n'
Str2 = regexprep(Str, '\bn\b'
I cannot test this currently.
[EDITED]
Str2 = regexprep(Str, '(?:^|\W)n(?:$|\W)', 'X_Model(1)')

댓글 수: 3

Ravi Goyal
Ravi Goyal 2016년 10월 19일
Hey Jan, I also thought about somehow using regexprep but cannot get it to work. Your solution sadly also does not work.
Jan
Jan 2016년 10월 19일
편집: Jan 2016년 10월 19일
@Ravi: See [EDITED] Please test this exhaustively, because I'm not a regexp hero.
Ravi Goyal
Ravi Goyal 2016년 10월 21일
Thanks Jan,
It does the job for the n but then fails for the normal replacement of x in sinh(x) by getting rid of the brackets...I guess i gotta go somehow with the symbolic toolbox or just leave it a known bug.

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

카테고리

도움말 센터File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기

질문:

2016년 10월 18일

댓글:

2016년 10월 21일

Community Treasure Hunt

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

Start Hunting!

Translated by