Respondida
calling a value in a matrix
Let 's try X = [1 3 4 5]; Y = [2 6 7 8]; [max_val, idx] = max(Y); X_idx = X(idx);

más de 4 años hace | 1

| aceptada

Respondida
Getting the low and high years
Let 's try load('zyrs.mat'); out = year_SPI(find(abs(year_SPI(:,2)) >1), :);

más de 4 años hace | 0

| aceptada

Respondida
Problem with code reusabilty of inlined S-Function
You need to add ssSetOptions in mdlInitializeSizes(SimStruct *S) function in your C S function as following. ssSetOptions(S...

más de 4 años hace | 0

| aceptada

Resuelto


Triangle sequence
A sequence of triangles is constructed in the following way: 1) the first triangle is Pythagoras' 3-4-5 triangle 2) the s...

más de 4 años hace

Resuelto


Find a Pythagorean triple
Given four different positive numbers, a, b, c and d, provided in increasing order: a < b < c < d, find if any three of them com...

más de 4 años hace

Resuelto


Is this triangle right-angled?
Given any three positive numbers a, b, c, return true if the triangle with sides a, b and c is right-angled. Otherwise, return f...

más de 4 años hace

Resuelto


Is this triangle right-angled?
Given three positive numbers a, b, c, where c is the largest number, return *true* if the triangle with sides a, b and c is righ...

más de 4 años hace

Resuelto


Area of an Isoceles Triangle
An isosceles triangle has equal sides of length x and a base of length y. Find the area, A, of the triangle. <<http://upload...

más de 4 años hace

Resuelto


Dimensions of a rectangle
The longer side of a rectangle is three times the length of the shorter side. If the length of the diagonal is x, find the width...

más de 4 años hace

Resuelto


Side of a rhombus
If a rhombus has diagonals of length x and x+1, then what is the length of its side, y? <<http://upload.wikimedia.org/wikipe...

más de 4 años hace

Resuelto


Side of an equilateral triangle
If an equilateral triangle has area A, then what is the length of each of its sides, x? <<http://upload.wikimedia.org/wikipe...

más de 4 años hace

Resuelto


Area of an equilateral triangle
Calculate the area of an equilateral triangle of side x. <<http://upload.wikimedia.org/wikipedia/commons/e/e0/Equilateral-tr...

más de 4 años hace

Resuelto


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<http://upload....

más de 4 años hace

Resuelto


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

más de 4 años hace

Resuelto


Inner product of two vectors
Find the inner product of two vectors.

más de 4 años hace

Resuelto


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

más de 4 años hace

Resuelto


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

más de 4 años hace

Resuelto


Create a vector
Create a vector from 0 to n by intervals of 2.

más de 4 años hace

Resuelto


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

más de 4 años hace

Resuelto


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

más de 4 años hace

Resuelto


Find max
Find the maximum value of a given vector or matrix.

más de 4 años hace

Resuelto


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

más de 4 años hace

Resuelto


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

más de 4 años hace

Resuelto


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

más de 4 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 ...

más de 4 años hace

Respondida
Arrangement of matrix elements in specific order
A = [1 2 4 3]; B = [2 3 1 4]; C = [4 2 3 1]; for i=1:4 D(find(C == A(i))) = B(i); end

más de 4 años hace | 1

| aceptada

Respondida
How to add strings?
C = horzcat(a, b)

más de 4 años hace | 1

| aceptada

Enviada


convert_bin2dec
Convert from binary to decimal (sign or unsign)

más de 4 años hace | 1 descarga |

Enviada


dec2singleFloat754
Convert from decimal of integer type to decimal of single float 754 type

más de 4 años hace | 2 descargas |

Respondida
How do you graph a function that refers to the function in its value?
what is y(0)? please refer following example. y(1) = 0; y(2) = 1; for i = 3:20 y(i) = (y(i-1)+y(i-2))/2; end plot(y) ...

más de 4 años hace | 0

| aceptada

Cargar más