필터 지우기
필터 지우기

Find a weight matrix and bias which performs the following binary classification

조회 수: 1 (최근 30일)
hello
i am working on a problem and i am using matlab to find hardlim but it keeps on telling me hardlim requires Deep learning toolbox so how can i solve this

답변 (2개)

Torsten
Torsten 2024년 3월 1일
편집: Torsten 2024년 3월 1일
Write your own hardlim function (see below) or license the Deep Learning Toolbox.
N = -1+2*rand(10,5)
S1 = my_hardlim(N)
function S = my_hardlim(N)
S = zeros(size(N));
S(N>=0) = 1;
end

the cyclist
the cyclist 2024년 3월 1일
Some MATLAB functionality is not included in basic MATLAB, and you need to purchase a separate "toolbox". The hardlim function is in the Deep Learning Toolbox.
If you don't have this toolbox installed, you don't have access to that function. Do you think you have it? What do you get if you type
ver
at the command line?

Community Treasure Hunt

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

Start Hunting!

Translated by