Johnny
自 2022 起处于活动状态
Followers: 0 Following: 0
Programming Languages:
MATLAB, Visual Basic
Spoken Languages:
English, French
MATLAB, Visual Basic
Spoken Languages:
English, French
Feeds
已解决
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...
7 months 前
已回答
How to run matlab and simulink in parrallel such that they dont effect each other speed
Hello @Shafaq Gul, I believe a solution to your problem can be found in the documentation here. Basically you need to log the ...
How to run matlab and simulink in parrallel such that they dont effect each other speed
Hello @Shafaq Gul, I believe a solution to your problem can be found in the documentation here. Basically you need to log the ...
1 year 前 | 0
| 已接受
已回答
Finding a specific pattern in data
Hello Ricardo, You can use the ismember function (https://www.mathworks.com/help/matlab/ref/double.ismember.html) combined wit...
Finding a specific pattern in data
Hello Ricardo, You can use the ismember function (https://www.mathworks.com/help/matlab/ref/double.ismember.html) combined wit...
1 year 前 | 0
已解决
Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...
2 years 前
已解决
Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.
2 years 前
已解决
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 ...
2 years 前
已解决
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 ...
2 years 前
已解决
Get the length of a given vector
Given a vector x, the output y should equal the length of x.
2 years 前
已解决
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...
2 years 前
已解决
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 ...
2 years 前
已解决
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:...
2 years 前