Create cell array of handle functions, which have been created from 2x1 double arrays
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Kraka Doros
el 3 de Jul. de 2022
Editada: Kraka Doros
el 3 de Jul. de 2022
% i want to create an array of 2x1 cells, for example :
% @(t)1*t+3
% @(t)2*t+4
% So i write :
>> clear
f={@(t)1*t+3
@(t)2*t+4};
% But i do not want to write the two functions, manually.
% I want to create this array, from pre-existing data,
% for example :
>> clear
a=[1 2]';
b=[3 4]';
% The above gives me, two 2x1 double array.
% a =
% 1
% 2
% b =
% 3
% 4
% Now, if i will write :
>> for ff=1:2
f{ff}=@(t)a(ff)*t+b(ff);
end
>> f=f';
% i will receive a 2x1 cell :
% f =
% @(t)a(ff)*t+b(ff)
% @(t)a(ff)*t+b(ff)
% instead of receiving :
% f =
% @(t)1*t+3
% @(t)2*t+4
% Any help please, how to create it.
1 comentario
Jan
el 3 de Jul. de 2022
Your message is hard to read. Please use the tools for formatting. Type code as code and test as text. Posting code as text and the text as pseudo-comments reduce the readability.
Respuesta aceptada
Jan
el 3 de Jul. de 2022
a = [1; 2];
b = [3; 4];
f = cell(2, 1);
for ff = 1:2
f{ff} = str2func(sprintf('@(t) %d * t + %d', a(ff), b(ff)));
end
f
Más respuestas (1)
patrick1704
el 3 de Jul. de 2022
Hi there,
I am not sure if I understand the problem correctly because once you evaluate the function handle Matlab, you will get the desired result. So what is the point of having it explicity written in the code?
Matlab will store the variables a and b as well as the index ff in the local function workspace, so you can even do something like this once you created the handles:
>> clear a b
>> f{1}(1)
ans =
4
>> f{2}(1)
ans =
6
The fact that Matlab does not do the actually value-representation is not really resolvable from my perspective, except for maybe when doing some ugly eval expression:
str2func(['@(t)',num2str(eval('a(ff)')),'*t+',num2str(eval('b(ff)'))])
However, I would not recommend it as the other solution works perfectly fine.
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!