Answered
How do I change the MatLab (Simulink) connection parameters to a Raspberry Pi
The suggestions are for R2015a, if you are using other versions please mention that in your message. Can you try using the f...

10 years ago | 0

Answered
How to plot current-voltage curve measured by Arduion Uno on Matlab
Have you tried using the Support package to send information from Arduino to MATLAB? http://www.mathworks.com/hardware-support/a...

10 years ago | 0

Answered
change this arduino code into matlab code:
I have not tried this out, hope this works out. I am using R2015a syntaxes for which you will have to download the support packa...

10 years ago | 0

Answered
How plot graphs in real time using arduino and simulink?
are you using the Simulink support package for Arduino to do this? If so, can you share your models? If you are not using th...

10 years ago | 0

Answered
How to connect an Arduino to Matlab run on a Mac? Error using serial/fopen (line 72)
Have you tried the support package for arduino? It is a free download - http://www.mathworks.com/hardware-support/arduino-matlab...

10 years ago | 0

Answered
Unable to install arduino support packages into mathlab R2014b
I found this link http://www.mathworks.com/matlabcentral/answers/134210#answer_167812, in which the user provides a possible sol...

10 years ago | 0

Answered
Ardiono UNO simulink package in R2015a
I found this link http://www.mathworks.com/matlabcentral/answers/134210#answer_167812, in which the user provides a possible sol...

10 years ago | 0

Answered
Why doesn't the updated Arduino Interfacing command "configurePin" work while "configureDigitalPin" and "configureAnalogPin" still do?
It would be helpful to know what release of MATLAB you are using etc. Because if you are getting an warning message that says co...

10 years ago | 0

Answered
In Matlab 2015a Hardware interface with Arduino UNO does not show Run command in Tools menu
After you have configured your Simulink model using "Run on Target Hardware > Options" to communicate with a specific type of Ar...

10 years ago | 0

Solved


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

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

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

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

11 years ago