using operators (+,-,*,/) in variables
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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;
0 Kommentare
Akzeptierte Antwort
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
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
Weitere Antworten (1)
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,'+')
0 Kommentare
Siehe auch
Kategorien
Mehr zu Characters and Strings finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!