Solved


Remove element(s) from cell array
You can easily remove an element (or a column in any dimension) from a normal matrix, but assigning that value (or range) empty....

3 years ago

Solved


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

3 years ago

Solved


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

3 years ago

Solved


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

3 years ago

Solved


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

3 years ago

Solved


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

3 years ago

Answered
Multi tick-xlabel plots
Hi, You could try doing a hold on plot if the time data and latitude are somewhat to scale time = 1:25; latitude = 1:35; ...

3 years ago | 0

Solved


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

3 years ago

Answered
how to put path of a folder in a loop so the loop can open subfolders by itself
Hi Souzan, My understanding is that you need to enter into the subfolders one by one, do certain operations and exit from the s...

3 years ago | 0

Answered
Find averages given conditions
My understanding is that you will be having different groups and you need to compute average of each parameter for those cities....

3 years ago | 0

| accepted

Answered
Taking the last Row of each Double in a Cell
Hi Fabio, I understand you want to create a matrix - each row containing the last row of the 14x8 double in the 2nd column of t...

3 years ago | 0