Utku Ceylan
Followers: 0 Following: 0
Here to learn MATLAB
Spoken Languages:
Turkish
Turkish
統計
All
Feeds
回答済み
Simulink Fundamentals Bug | Subsystems > Masking Subsystems > (1/2) Practice > Task 5
Hello Javier, I had the same problem. You can benefit from the link below: Masking Subsystems-Task 5
Simulink Fundamentals Bug | Subsystems > Masking Subsystems > (1/2) Practice > Task 5
Hello Javier, I had the same problem. You can benefit from the link below: Masking Subsystems-Task 5
2年以上 前 | 0
回答済み
I purchased a "Self_Paced" simulink course. When I go to the Simulink start page I do not see the course available.
Hello John, Please try this: Open Simulink Click More... under the Learn Hopefully, you can see your course at right
I purchased a "Self_Paced" simulink course. When I go to the Simulink start page I do not see the course available.
Hello John, Please try this: Open Simulink Click More... under the Learn Hopefully, you can see your course at right
2年以上 前 | 0
解決済み
Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...
2年以上 前
質問
Masking Subsystems Task 5 in Simulink Fundamentals course
Hello, I did what the task asked. The result of it is same as the answer. I cannot move on the new task since the question says...
2年以上 前 | 3 件の回答 | 1
3
回答解決済み
Verify Law of Large Numbers
If a large number of fair N-sided dice are rolled, the average of the simulated rolls is likely to be close to the mean of 1,2,....
3年弱 前
解決済み
Get the length of a given vector
Given a vector x, the output y should equal the length of x.
3年弱 前
解決済み
Calculate Inner Product
Given two input matrices, |x| and |y|, check if their inner dimensions match. * If they match, create an output variable |z|...
3年弱 前
解決済み
Find MPG of Lightest Cars
The file |cars.mat| contains a table named |cars| with variables |Model|, |MPG|, |Horsepower|, |Weight|, and |Acceleration| for ...
3年弱 前
解決済み
Calculate BMI
Given a matrix |hw| (height and weight) with two columns, calculate BMI using these formulas: * 1 kilogram = 2.2 pounds * 1 ...
3年弱 前
解決済み
Plot Damped Sinusoid
Given two vectors |t| and |y|, make a plot containing a blue ( |b| ) dashed ( |--| ) line of |y| versus |t|. Mark the minimum...
3年弱 前
解決済み
Calculate a Damped Sinusoid
The equation of a damped sinusoid can be written as |y = A.ⅇ^(-λt)*cos(2πft)| where |A|, |λ|, and |f| ...
3年弱 前
解決済み
Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...
3年弱 前
質問
How to compare the index values in the different matrices
Hello, I am trying to solve the problem 23 in Introduction to Matlab. The question asks to find the perfect squares as shown be...
約3年 前 | 1 件の回答 | 0
1
回答解決済み
Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...
約3年 前
解決済み
Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.
約3年 前
解決済み
Make a random, non-repeating vector.
This is a basic MATLAB operation. It is for instructional purposes. --- If you want to get a random permutation of integer...
約3年 前
解決済み
Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.
約3年 前
解決済み
Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....
約3年 前
解決済み
Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...
約3年 前
解決済み
Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; ...
約3年 前
解決済み
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年 前
解決済み
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年 前
解決済み
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...
約3年 前
解決済み
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年 前
解決済み
Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.
約3年 前
解決済み
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年 前