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

7 Monate vor | 0

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

7 Monate vor | 0

| akzeptiert

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

8 Monate vor | 0

| akzeptiert

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

8 Monate vor | 0

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

8 Monate vor | 0

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

8 Monate vor | 1

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

8 Monate vor | 0

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

9 Monate vor | 0

| akzeptiert

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

9 Monate vor | 0

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

9 Monate vor | 1

Gelöst


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

9 Monate vor

Gelöst


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

9 Monate vor

Gelöst


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

9 Monate vor

Gelöst


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

9 Monate vor

Gelöst


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.

9 Monate vor

Gelöst


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

9 Monate vor

Gelöst


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

9 Monate vor

Gelöst


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.

9 Monate vor

Gelöst


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.

9 Monate vor

Gelöst


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

9 Monate vor

Gelöst


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

9 Monate vor

Gelöst


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

9 Monate vor

Gelöst


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

9 Monate vor

Gelöst


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

9 Monate vor

Gelöst


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

9 Monate vor

Gelöst


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

9 Monate vor

Gelöst


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

9 Monate vor

Gelöst


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

9 Monate vor

Gelöst


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

9 Monate vor

Gelöst


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

9 Monate vor

Mehr laden