Beantwortet
How can I generate the Autocorrelation matrix of a vector of random variables?
Hello Mohamad, MATLAB’s auto correlation function can be used for this purpose. The documentation for the autocorrelation c...

etwa 5 Jahre vor | 0

Beantwortet
Spikes in my heaviside function/step functions
Hello Samantha, The plot in your picture is a mixture of two different plots. It has the intended heaviside as expected. ...

etwa 5 Jahre vor | 0

Beantwortet
Why does not Matlab use the full capacity of my computer while training a neural network?
Hello Christoph Müßig, Please have a look at this answer.

etwa 5 Jahre vor | 0

Beantwortet
Need to Rotate Set of 3D Data
https://www.mathworks.com/matlabcentral/answers/446948-need-to-rotate-set-of-3d-data Hello Criag, One way to rotate this ...

etwa 5 Jahre vor | 0

Beantwortet
how to create logical image from plot in a given scale?
https://www.mathworks.com/matlabcentral/answers/446594-how-to-create-logical-image-from-plot-in-a-given-scale Hello Osama T...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
Can i download an older test version (R2017a) of MATLAB?
Hello Arno, Log in to your Mathworks account In the upper-right corner, you will see your account name, with a little pull-dow...

etwa 5 Jahre vor | 0

Beantwortet
NOT ABLE TO CONNECT MY ANDROID TO COMPUTER.
Hello Hazem, Please try to follow the instructions here. Also, make sure both the devices are in the same network on the sam...

etwa 5 Jahre vor | 0

Beantwortet
mex -setup does not work
Hello Mingxi Liu, pleasy try this command in your terminal sudo xcode-select -s /Applications/Xcode.app This should solve t...

etwa 5 Jahre vor | 0

Beantwortet
Error using codistributed/sprintf (line 10) sprintf does not support inputs of type 'codistributed'.
Hello Bingkun, Can you please provide more details about the code? The question is not a generic error, it might be because of...

etwa 5 Jahre vor | 0

Beantwortet
Overlay video on white background at specific location
Hello Jessica, This can be done using MATLAB's matrix indexing. You can create a 2560 x 1440 image, followed by writing the re...

etwa 5 Jahre vor | 0

Beantwortet
How to take data from PuTTy to MATLAB to make a real time plot of location of an object?
Hello Sifat, PuTTy is an interface to communicate with the MSP. It initiates and starts a UART communication line with the MSP....

etwa 5 Jahre vor | 0

Beantwortet
"Error: Not enough memory on the target to process the packet: EXT_SELECT_SIGNALS" in using RPi for video streaming
The external mode data is uploaded to the host for display through Simulink's external mode buffers. This error occurs because, ...

etwa 5 Jahre vor | 1

Beantwortet
Can I make the max value in a plot 1 and the rest zero with kronecker delta?
There is no direct method to implement the kroneckel delta function, but the algorithm can be coded. The following is a sam...

etwa 5 Jahre vor | 0

Beantwortet
How can I receive UDP multicast data in MATLAB using Instrument Control Toolbox?
Please refer to the below link : https://www.mathworks.com/matlabcentral/answers/91896-is-it-possible-to-connect-to-a-udp-multi...

etwa 5 Jahre vor | 0

Beantwortet
How to transmit several float from simulink to arduino mega
The data can the sent to arduino from simulink as an array This can be done using the Tapped delay block in Simulink. When...

etwa 5 Jahre vor | 0

Beantwortet
Continous Filtering of ECG
There is no in built method for finding the sampling frequency of the Arduino mega. The Sampling frequency depends on a lot of...

etwa 5 Jahre vor | 0

Beantwortet
Code generation continuous time
When a C++ code is generated, the timestep is not defined by the embedded coder. The time step should ideally be defined in th...

etwa 5 Jahre vor | 0

Beantwortet
How to change the Rowlabels font to italics
The FontSize property in clustergram is hidden, so, set the ShowHiddenHandles property as 'on' so that you can see the hidden pr...

etwa 5 Jahre vor | 0

Gelöst


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

mehr als 5 Jahre vor

Gelöst


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

mehr als 5 Jahre vor

Gelöst


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

mehr als 5 Jahre 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]; ...

mehr als 5 Jahre vor

Gelöst


Is my wife right?
Regardless of input, output the string 'yes'.

mehr als 5 Jahre vor

Gelöst


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

mehr als 5 Jahre vor

Gelöst


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

mehr als 5 Jahre vor

Gelöst


Add two numbers
Given a and b, return the sum a+b in c.

mehr als 5 Jahre vor

Gelöst


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

mehr als 5 Jahre vor

Gelöst


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

mehr als 5 Jahre vor

Gelöst


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

mehr als 5 Jahre vor

Gelöst


Back and Forth Rows
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the...

mehr als 5 Jahre vor

Mehr laden