필터 지우기
필터 지우기

Create cell array of handle functions, which have been created from 2x1 double arrays

조회 수: 2 (최근 30일)
% 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
Jan
Jan 2022년 7월 3일
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.

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

채택된 답변

Jan
Jan 2022년 7월 3일
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
f = 2×1 cell array
{@(t)1*t+3} {@(t)2*t+4}
  댓글 수: 1
Kraka Doros
Kraka Doros 2022년 7월 3일
I apologies if my writing cause problems, for somebody trying read my question. I will do my best, in future.
Your answer is exactly what i want.
So i will accept it.
Thanks.

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

추가 답변 (1개)

patrick1704
patrick1704 2022년 7월 3일
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.
  댓글 수: 1
Kraka Doros
Kraka Doros 2022년 7월 3일
Thanks for your answer. I appreciate.
My question was a part of creating a larger code. I just wanted to create, a cell array, from some handle functions which have been created, by themselves, from 2x1 double arrays.
I did not want the results but just the general form of the functions.
Anyway thanks for your interest to help me.

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

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by