Community Profile

photo

Paul


Last seen: 16 días hace Con actividad desde 2023

Followers: 0   Following: 0

Estadísticas

All
  • Thankful Level 2
  • Solver

Ver insignias

Feeds

Ver por

Pregunta


Applying Colormaps to Scatter3 Plots
I'm trying to plot using scatter3, along with colormaps to understand correlations in my data. Currently, this is what I've dev...

alrededor de 2 meses hace | 1 respuesta | 0

1

respuesta

Pregunta


Plotting a surface from a timetable
I've developed a timetable (attached), and I want to make a surface plot from it. I want "Start Time" and "Distance [km]" to be ...

2 meses hace | 2 respuestas | 0

2

respuestas

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

3 meses hace

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

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

3 meses hace

Resuelto


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

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

3 meses 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 displayed ...

3 meses hace

Resuelto


Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2 3 3 3 4...

3 meses hace

Resuelto


Return area of square
Side of square=input=a Area=output=b

3 meses 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. <<https://i.imgu...

3 meses hace

Resuelto


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

3 meses hace

Resuelto


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

7 meses hace

Resuelto


Back to basics - mean of corner elements of a matrix
Calculate the mean of corner elements of a matrix. e.g. a=[1 2 3; 4 5 6; 7 8 9;] Mean = (1+3+7+9)/4 = 5

7 meses hace

Resuelto


Set the array elements whose value is 13 to 0
Input A either an array or a vector (which can be empty) Output B will be the same size as A . All elements of A equal to 13...

7 meses hace

Resuelto


Getting logical indexes
This is a basic MATLAB operation. It is for instructional purposes. --- Logical indexing works like this. thresh = 4...

7 meses hace

Resuelto


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

7 meses hace

Resuelto


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

7 meses hace

Resuelto


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

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

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

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

7 meses hace

Pregunta


Vectorizing a Simulink Model
I'm interested in vectorizing a Simulink model so that it'll be more flexible and computationally efficient. I'm analyzing traff...

7 meses hace | 1 respuesta | 0

1

respuesta