回答済み
How to turn off "Result explorer" and "Generate report automatically after analysis" options in the coverage settings through command line
Hi Shashwat, You can refer the answer in the link to understand how to get command line parameters from the Configuration Par...

3年弱 前 | 0

回答済み
How do I receive and use NoteOn messages from a midi device in MATLAB?
Hi Joel, It is my understanding that you want to access the message and note value from the "midimsg" received and use it wit...

3年弱 前 | 1

| 採用済み

回答済み
how to solve this equation?
Hi I am assuming you want to solve the equation d = solve(eq1==Th1,eq2==Th2,eq2==Th3,eq2==Th4,Rs,Ld,Lq,kexi); You can try u...

3年弱 前 | 1

| 採用済み

回答済み
I want to use atan2 in my equation. When I use atan2 , I get answer NaN. But when I use 'atan' , i didn't get NaN. Why?
Hi Vishal, You can try with "atan2" after making the following modifications syms alpha1 alpha1_d alpha1_dd real and add th...

約3年 前 | 0

| 採用済み

回答済み
How to simplify a symbolic matrix
Hi Sourav, As mentioned in the documentation for "simplify" there is no universal idea to the simplest form of an expression. Y...

約3年 前 | 1

| 採用済み

回答済み
how to modulate and demodulate dpsk signal using MATLAB
Hi, From my understanding, you are looking to modulate a DPSK signal and demodulate it using MATLAB. You may want to look into...

約3年 前 | 0

回答済み
how to count my steps with my mobile and how can i send it to the coumputer?
Hi ron, Kindly refer to the following links for help with counting steps with MATLAB Mobile and sending the data to your comput...

約3年 前 | 0

回答済み
i have to draw an incircle in a triangle.
Hi Saurabh, Assuming you have calculated the incentre and inradius for the incircle, you can plot the incircle by using the p...

3年以上 前 | 1

回答済み
How do I update a plot in a figure without closing the gui and without the plots stacking on top of each other?
Hi, I am assuming that you want to update the plot generated without closing the GUI and without a new plot being created. A n...

3年以上 前 | 0

回答済み
Getting UTC time from Posix time - leap seconds
Hi, I am assuming you want to convert posixtime to UTC and take into account the leap seconds. This can be done using the "dat...

3年以上 前 | 1

回答済み
Create a mosaic using average color of block given image
Hi, I am assuming you want to get the average of color of each block for each component separately. In your function "myfun" by...

3年以上 前 | 1

| 採用済み

回答済み
showing "unable to resolve name yout.getElement"
Hi, The above error message "unable to resolve the name yout.getElement" is shown because the variable yout is not present in t...

3年以上 前 | 4

回答済み
How to connect a line between two moving points?
Hi Pablo, Assuming you want to join the points representing the "crank" and the "slide", you can do this in a similar way how ...

3年以上 前 | 1

| 採用済み

回答済み
How to compute a definite sum of a vector as an LP constrain
Hi Roeland, I am assuming you want w(t) = sum(x(1:t)) for all values of t from 1 to V. In order to do that you may wa...

3年以上 前 | 0

回答済み
Matlab won't solve system of equations
Hi, You may want to recheck the system of equations you want to solve as I can see inconsistencies in eq1-2 and eq3-4 eq1 ...

3年以上 前 | 0

回答済み
Minimization of a function using fmincon with no constraints vs. using fminbnd
Hi, Kindly refer to the limitations of the fmincon function below: https://www.mathworks.com/help/optim/ug/fmincon.html#bu...

3年以上 前 | 0

回答済み
Unable to write loops for self playing connect4 win conditions
Hi, Assuming you want your code to end execution once the win condition is reached, you can use the return function as follow...

3年以上 前 | 0

解決済み


Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...

5年弱 前

解決済み


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

5年弱 前

解決済み


Vectorize the digits of an Integer
Create a vector of length N for an integer of N digits. x = 123045; x_vec = [1 2 3 0 4 5]; I happened upon a trick ...

5年弱 前

解決済み


Create matrix of replicated elements
Given an input element x, and the dimensions, (m, n) return a matrix of size m x n filled with element x. Example: Input: ...

5年弱 前

解決済み


Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...

5年弱 前

解決済み


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年弱 前

解決済み


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年弱 前

解決済み


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年弱 前

解決済み


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

5年弱 前

解決済み


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年弱 前

解決済み


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

5年弱 前

解決済み


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年弱 前

解決済み


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年弱 前

さらに読み込む