Filter löschen
Filter löschen

using operators (+,-,*,/) in variables

3 Ansichten (letzte 30 Tage)
Alex
Alex am 3 Dez. 2014
Beantwortet: Azzi Abdelmalek am 3 Dez. 2014
Hi, if i need to config for + to be 'op' for example how can i then use it as an actual + further down the code?
example
op='+';
a=1;
b=2;
c=a(+ as op)b;

Akzeptierte Antwort

Guillaume
Guillaume am 3 Dez. 2014
Use str2fun to change your string into a function handle. Note that the string content must be a valid matlab function name ( '+' is)
op = '+';
a = 1;
b = 2;
opfn = str2fun(op);
c = opfn(a, b);
There is no way to have it
c = a opfn b; %can't be done in matlab
  2 Kommentare
Guillaume
Guillaume am 3 Dez. 2014
Note that if you don't require to start with a string, you could just define opfn as:
opfn = @plus; %@minus, @times, @rdivide for elementwise -, *, / respectively
Sean de Wolski
Sean de Wolski am 3 Dez. 2014
Use this approach of opfun = @plus or whatever.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Azzi Abdelmalek
Azzi Abdelmalek am 3 Dez. 2014
You can create this function
function y=op(a,b,operator)
if operator=='+'
y=a+b
elseif operator=='-'
y=a-b
elseif operator=='/'
y=a/b
elseif operator=='*'
y=a*b
end
% And call it
y=op(5,6,'+')

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by