Community Profile

photo

Lamour Haithem Firass


Last seen: mer än 2 år ago Active since 2019

Statistics

All
  • Explorer
  • Commenter
  • Solver

View badges

Content Feed

View by

Question


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

mer än 2 år ago | 0 answers | 0

0

answers

Question


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

nästan 3 år ago | 1 answer | 0

1

answer

Question


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

nästan 3 år ago | 0 answers | 0

0

answers

Question


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

nästan 3 år ago | 1 answer | 0

1

answer

Solved


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]

mer än 4 år ago

Solved


Return area of square
Side of square=input=a Area=output=b

mer än 4 år ago

Solved


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.

mer än 4 år ago

Solved


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

mer än 4 år ago

Solved


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

mer än 4 år ago

Solved


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

mer än 4 år ago

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

mer än 4 år ago

Solved


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

mer än 4 år ago

Solved


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

mer än 4 år ago

Solved


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

mer än 4 år ago

Solved


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

mer än 4 år 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 ...

mer än 4 år 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...

mer än 4 år 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:...

mer än 4 år ago