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

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

Answers (2)

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
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?

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Asked:

on 1 Mar 2024

Answered:

on 1 Mar 2024

Community Treasure Hunt

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

Start Hunting!