Community Profile

photo

Lamour Haithem Firass


Last seen: más de 2 años hace Con actividad desde 2019

Estadísticas

All
  • Explorer
  • Commenter
  • Solver

Ver insignias

Content Feed

Ver por

Pregunta


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

más de 2 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

casi 3 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

casi 3 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

casi 3 años hace | 1 respuesta | 0

1

respuesta

Resuelto


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]

más de 4 años hace

Resuelto


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

más de 4 años hace

Resuelto


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.

más de 4 años hace

Resuelto


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

más de 4 años hace

Resuelto


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

más de 4 años hace

Resuelto


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

más de 4 años hace

Resuelto


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

más de 4 años hace

Resuelto


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

más de 4 años hace

Resuelto


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

más de 4 años hace

Resuelto


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

más de 4 años hace

Resuelto


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

más de 4 años hace

Resuelto


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

más de 4 años hace

Resuelto


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

más de 4 años hace

Resuelto


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

más de 4 años hace