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...
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 前
已解决
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...
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 前
已解决
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 前
已回答 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 ...
已回答 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 前 | 0
已回答 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...
已回答 Simulink block for initialization
As per my understanding, you want to use one constant value while initializing and afterwards the feedback value.
So, actually ...