Answered
Can I charactrize LFP cell in "Characterize Battery Cell for Electric Vehicles"?
Hi Benel, Yes, you can characterize an LFP (Lithium Iron Phosphate) cell in the "Characterize Battery Cell for Electric Vehicle...

3 maanden ago | 0

Answered
Performance of SystemObject vs Class
Hi Friedrich, Replacing nested SystemObjects with normal classes may not necessarily lead to a performance increase in the gene...

3 maanden ago | 0

| accepted

Answered
How can I generate code from the system I've designed in the fuzzy logic designer?
Hi Nurul Ainina, I understand that you want to generate the code from fuzzy logic designer, To generate code for a fuzzy log...

4 maanden ago | 0

| accepted

Answered
ploting 1D eigenvector using ffmatlib
Hi AMIT, I understand that you want to plot 1D eigen vector, Yes, you can plot a 1D eigenvector in MATLAB. Since the eigenve...

4 maanden ago | 0

Answered
s it possible to use the matlab system identification toolbox to conduct dam modal analysis based on strong earthquake records? ARX or ARMAX is adopted.
Hi lLongjiang, I understand that you want to use System Identification Toolbox to implement ARX or ARMAX algorithm. Yes, it...

4 maanden ago | 0

Answered
model predictive control toolbox
Hi K Kalanithi, I understand that you want to know the difference between “mpcobj” and “sim” commands in Model Predictive Cont...

4 maanden ago | 1

Answered
Can Matlab read the voltage of a circuit as an input.
Hi Jonathan, I understand that you want to know if MATLAB can be used to supply a set voltage to the resistor and can measure ...

4 maanden ago | 0

Answered
How to use two Simulink libraries at the same time
Hi Jun Ishikawa, I understand that you want to use two Simulink libraries at the same time, In Simulink, utilizing multiple ...

4 maanden ago | 0

| accepted

Answered
Cannot call INPUT from EVALC. in my code
Hi Hanming, I understand that you want call “input” from “evalc” function. In the provided code, the “evalc” function is not...

4 maanden ago | 0

Answered
How to find size of an object inside the bounding box?
Hi Sahik Ha.adi, I understand that you have developed a code to find the size of the white region in the selected object, the a...

4 maanden ago | 1

Solved


Predict Cricket Stridulation Rate from Air Temperature
Stridulation is the process that creates a cricket's “chirp” by rubbing their wings or legs. According to the Old Farmer's Alma...

5 maanden ago

Solved


Find Air Temperature from Cricket Stridulation Rate
Stridulation is the process that creates a cricket's “chirp” by rubbing their wings or legs. According to the Old Farmer's Alma...

5 maanden ago

Solved


Chess probability
The difference in the ratings between two players serves as a predictor of the outcome of a match (the <http://en.wikipedia.org/...

5 maanden ago

Solved


Calculate Amount of Cake Frosting
Given two input variables r and h, which stand for the radius and height of a cake, calculate the surface area of the cake you n...

5 maanden ago

Solved


Průměr z výběrového souboru
Napište funkci, která vrátí průměr z hodnot vektoru data. Např data = [1, 2, 3, 4, 5, 6, 7, 8, 9] je prumer = 5.

5 maanden ago

Solved


Solve a System of Linear Equations
Example: If a system of linear equations in x₁ and x₂ is: 2x₁ + x₂ = 2 x₁ - 4 x₂ = 3 Then the coefficient matrix (A) is: 2 ...

5 maanden ago

Solved


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

5 maanden ago

Solved


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.

5 maanden ago

Solved


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.

5 maanden ago

Solved


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

5 maanden ago

Solved


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

5 maanden ago

Solved


Number of 1s in a binary string
Find the number of 1s in the given binary string. Example. If the input string is '1100101', the output is 4. If the input stri...

5 maanden ago

Solved


Return the first and last characters of a character array
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...

5 maanden ago

Solved


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

5 maanden ago

Solved


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

5 maanden ago

Solved


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

5 maanden ago

Solved


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

5 maanden ago

Solved


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

5 maanden ago

Solved


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

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

5 maanden ago

Load more