Community Profile

photo

Nachiketa Chauhan


Last seen: alrededor de 2 años hace Con actividad desde 2018

Followers: 0   Following: 0

Estadísticas

All
  • Solver

Ver insignias

Feeds

Ver por

Pregunta


Automatically load associated file into matlab GUI
We have data file in a very specific extension; say ''.nzz''. I have associated this file format with ''MATLABGUI.exe" which a...

más de 4 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Time taken for prediction using competlayer Neural network.
I have an input of 2000 samples 800predictors, input is 2000x800, using the following simple code inputs = input'; net = comp...

casi 5 años hace | 0 respuestas | 0

0

respuestas

Resuelto


What is Sum Of all elements of Matrix
Given the matrix x, return the sum of all elements of matrix. Example: Input x = [ 1 2 0 0 0 0 6 9 3 3 ] ...

alrededor de 6 años hace

Resuelto


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

alrededor de 6 años hace

Resuelto


Add two numbers
Given a and b, return the sum a+b in c.

alrededor de 6 años hace

Resuelto


Box!
Given a box, find the volume of the cube. With each side = a.

alrededor de 6 años hace

Resuelto


Divide by 4
Given the variable x as your input, divide it by four and put the result in y.

alrededor de 6 años hace

Resuelto


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

alrededor de 6 años hace

Resuelto


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,...

alrededor de 6 años hace

Resuelto


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

alrededor de 6 años hace

Resuelto


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

alrededor de 6 años hace

Resuelto


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

alrededor de 6 años hace

Resuelto


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

alrededor de 6 años hace

Resuelto


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

alrededor de 6 años hace

Resuelto


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:...

alrededor de 6 años hace

Resuelto


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

alrededor de 6 años hace