Lamour Haithem Firass
Followers: 0 Following: 0
統計
All
Feeds
質問
how to simulate partial differential equation in simulink?
Hello, every one i have the mathematique problem below, i'll provide the significance of each variable in the end. <</matlabc...
3年以上 前 | 0 件の回答 | 0
0
回答質問
SIMULINK-SOC battery modeling
I have this simulation of a lithium-ion(soc). The problem is when run it I get this error. How can I solve this problem? Note...
3年以上 前 | 1 件の回答 | 0
1
回答質問
Assembly of mass Matrix algorithm
I have this code, that generate the "Assembly of mass Matrix algorithm" this code deisgned for (3,3) matrix. The problem is: h...
3年以上 前 | 0 件の回答 | 0
0
回答質問
Index in position 1 exceeds array bounds (must not exceed 1).
I have the code below for the bellman function the shortest way, and when i debug, it return "index error" in u = e(2, j), I hav...
3年以上 前 | 1 件の回答 | 0
1
回答解決済み
Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]
約5年 前
解決済み
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.
約5年 前
解決済み
Number of Even Elements in Fibonacci Sequence
Find how many even Fibonacci numbers are available in the first d numbers. Consider the following first 14 numbers 1 1 2...
約5年 前
解決済み
Fibonacci-Sum of Squares
Given the Fibonacci sequence defined by the following recursive relation, * F(n) = F(n-1) + F(n-2) * where F(1) = 1 and F(1)...
約5年 前
解決済み
Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...
約5年 前
解決済み
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年 前
解決済み
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]; ...
約5年 前
解決済み
Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...
約5年 前
解決済み
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
5年以上 前
解決済み
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年以上 前
解決済み
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年以上 前
解決済み
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年以上 前