A répondu
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...

presque 3 ans il y a | 0

A répondu
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...

presque 3 ans il y a | 1

| A accepté

A répondu
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...

presque 3 ans il y a | 1

| A accepté

A répondu
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...

environ 3 ans il y a | 0

| A accepté

A répondu
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...

environ 3 ans il y a | 1

| A accepté

A répondu
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...

environ 3 ans il y a | 0

A répondu
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...

environ 3 ans il y a | 0

A répondu
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...

plus de 3 ans il y a | 1

A répondu
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...

plus de 3 ans il y a | 0

A répondu
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...

plus de 3 ans il y a | 1

A répondu
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...

plus de 3 ans il y a | 1

| A accepté

A répondu
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...

plus de 3 ans il y a | 4

A répondu
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 ...

plus de 3 ans il y a | 1

| A accepté

A répondu
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...

plus de 3 ans il y a | 0

A répondu
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 ...

plus de 3 ans il y a | 0

A répondu
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...

plus de 3 ans il y a | 0

A répondu
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...

plus de 3 ans il y a | 0

A résolu


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

presque 5 ans il y a

A résolu


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

presque 5 ans il y a

A résolu


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

presque 5 ans il y a

A résolu


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

presque 5 ans il y a

A résolu


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

presque 5 ans il y a

A résolu


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.

presque 5 ans il y a

A résolu


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.

presque 5 ans il y a

A résolu


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

presque 5 ans il y a

A résolu


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

presque 5 ans il y a

A résolu


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

presque 5 ans il y a

A résolu


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

presque 5 ans il y a

A résolu


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

presque 5 ans il y a

A résolu


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

presque 5 ans il y a

Charger plus