Create function such that for each element of the vector it applies different function
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Dawid Wysocki
am 30 Dez. 2020
Kommentiert: Ameer Hamza
am 30 Dez. 2020
Let's say I have following functions:
f1 = @(x) a*x(1) + 1;
f2 = @(x) b*x(2) - 1;
where a and b are parameters that I want to specify before. And a vector:
x = [2;4];
I want to create function handler F that will be created before hand (like a delegation in C#) using a and b. I want to use F to calculate next vector values (f1 for first cell, f2 for second) for instance given a = b = 1:
F(x) = [3;3];
I tried creating cell:
F = {f1;f2}
but it gives me an error "Index exceeds the number of array elements (2).".
0 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 30 Dez. 2020
Bearbeitet: Ameer Hamza
am 30 Dez. 2020
Try something like this
a = 1;
b = 1;
x = [2; 4];
f1 = @(x) a*x(1) + 1;
f2 = @(x) b*x(2) - 1;
F = @(x) [f1(x); f2(x)];
Result
>> F(x)
ans =
3
3
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!