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

5 years ago

Solved


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

5 years ago

Solved


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

5 years ago

Solved


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

5 years ago

Solved


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

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

5 years ago

Solved


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

5 years ago

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

5 years ago

Solved


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

5 years ago

Answered
switch controlled by signal
In case if one value to be given to the to selection input of switch block, you can use below options: Use constant block and ...

5 years ago | 0

Answered
Set of SISO transfer functions to MIMO transfer function
As you want to create Transfer function model in MATLAB, you can use ‘tf’ function. For your case it will be: Numerator = {1,2...

5 years ago | 0

Answered
Distance-Time data extraction
As per my understanding, as (distance<=0.5nm) and distance is 2nd column, so it should be: data = dlmread('Minimumdistance.txt'...

5 years ago | 0

Answered
Increment goto name in Simulink
You can do it programmatically through add_block and set_param, as per my understanding. Please refer the following example. s...

5 years ago | 0

Answered
How do I display logged local data of stateflow in Logic Analyzer
As per my knowledge, there is no such way in MATLAB R2018b to view local variables of Stateflow in Logic Analyzer. But yes, it...

5 years ago | 0

| accepted

Answered
Simulink block for initialization
As per my understanding, you want to use one constant value while initializing and afterwards the feedback value. So, actually ...

5 years ago | 0

| accepted