Community Profile

photo

Nilay Khatri


Aktiv seit 2016

Followers: 0   Following: 0

Statistiken

All
  • First Review
  • Thankful Level 1
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Gelöst


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

mehr als 6 Jahre vor

Frage


Neural Network Training Implementation
Hi, I have been trying to implement my own version of gradient-descent training. The cost function I use for minimization is neg...

fast 7 Jahre vor | 0 Antworten | 0

0

Antworten

Gelöst


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

mehr als 7 Jahre vor

Gelöst


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

mehr als 7 Jahre vor

Gelöst


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

mehr als 7 Jahre vor

Gelöst


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

fast 8 Jahre vor

Gelöst


Is my wife right?
Regardless of input, output the string 'yes'.

fast 8 Jahre vor

Gelöst


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

fast 8 Jahre vor

Gelöst


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

fast 8 Jahre vor

Frage


Logical Indexing on a matrix with a vector of indices.
I have a binary labeled image with the |'area'| property computed using |regionprops|. I am looking to remove blobs which have a...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort