已回答
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...

5 months 前 | 0

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

5 months 前 | 0

| 已接受

已回答
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...

7 months 前 | 0

| 已接受

已回答
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...

7 months 前 | 0

已回答
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...

7 months 前 | 0

已回答
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...

7 months 前 | 1

已回答
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 ...

7 months 前 | 0

已回答
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 ...

7 months 前 | 0

| 已接受

已回答
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...

7 months 前 | 0

已回答
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...

7 months 前 | 1

已解决


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

7 months 前

已解决


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

7 months 前

已解决


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

7 months 前

已解决


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

7 months 前

已解决


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.

7 months 前

已解决


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

7 months 前

已解决


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

7 months 前

已解决


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.

7 months 前

已解决


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.

7 months 前

已解决


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

7 months 前

已解决


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

7 months 前

已解决


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

7 months 前

已解决


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

7 months 前

已解决


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

7 months 前

已解决


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

7 months 前

已解决


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

7 months 前

已解决


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

7 months 前

已解决


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

7 months 前

已解决


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

7 months 前

已解决


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

7 months 前

加载更多