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

ongeveer 5 jaar ago | 0

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

ongeveer 5 jaar ago | 0

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

ongeveer 5 jaar ago | 0

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

ongeveer 5 jaar ago | 0

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

ongeveer 5 jaar ago | 0

| accepted

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

ongeveer 5 jaar ago | 0

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

ongeveer 5 jaar ago | 0

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

ongeveer 5 jaar ago | 0

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

ongeveer 5 jaar ago | 0

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

ongeveer 5 jaar ago | 0

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

ongeveer 5 jaar ago | 0

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

ongeveer 5 jaar ago | 1

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

ongeveer 5 jaar ago | 0

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

ongeveer 5 jaar ago | 0

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

ongeveer 5 jaar ago | 0

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

ongeveer 5 jaar ago | 0

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

ongeveer 5 jaar ago | 0

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

ongeveer 5 jaar ago | 0

Solved


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

meer dan 5 jaar ago

Solved


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

meer dan 5 jaar ago

Solved


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

meer dan 5 jaar ago

Solved


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

meer dan 5 jaar ago

Solved


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

meer dan 5 jaar ago

Solved


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

meer dan 5 jaar ago

Solved


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

meer dan 5 jaar ago

Solved


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

meer dan 5 jaar ago

Solved


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

meer dan 5 jaar ago

Solved


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

meer dan 5 jaar ago

Solved


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

meer dan 5 jaar ago

Solved


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

meer dan 5 jaar ago

Load more