Use exhaustive searcher in simulink model

조회 수: 2 (최근 30일)
leonidas86
leonidas86 2021년 9월 30일
답변: Salman Ahmed 2021년 10월 12일
Hello,
I would like to use the ExhaustiveSearcher() function in simulink by using a matlab function block. The target is to determine the nearest point in x-y- data set with reference to a given x-y-coordinate.
When running in Matlab the function works fine but in simulink I get an error "Cannot call protected member" when initializing the Mdl object.
Here is my code so far:
function [x,y] = getNearestPoint(xNED_Veh, yNED_Veh, xNED_Track, yNED_Track)
xyNED_Track = [xNED_Track yNED_Track];
Mdl = ExhaustiveSearcher(xyNED_Track);
Idx = knnsearch(Mdl,[xNED_Veh yNED_Veh]);
x = xNED_Track(Idx);
y = yNED_Track(Idx);
end

답변 (1개)

Salman Ahmed
Salman Ahmed 2021년 10월 12일
Hi,
You may try defining the function using coder.extrinsic in case the function is not supported. Try adding the following to your MATLAB Fcn block.
coder.extrinsic('ExhaustiveSearcher');
You may also consider preallocating some memory to Idx using coder.nullcopy. Try adding this line also, if you face any errors.
Idx = coder.nullcopy(zeros(s)); % replace s with the expected size of Idx

카테고리

Help CenterFile Exchange에서 Simulink Functions에 대해 자세히 알아보기

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by