Answered
How to insert image in MatLab
<https://nl.mathworks.com/help/matlab/ref/imagesc.html Imagesc function>

7 years ago | 0

Answered
How to add text and images to the matlab gui (figure) ?
Is this what you were looking for? plot(1:10);text(10,10,'Is this what you need?');

7 years ago | 1

Answered
SIMULINK ARDUINO MEGA 2560
Make sure that your simulink model is configured for the arduino mega, and make sure that you set the com port in the simulink m...

8 years ago | 0

Answered
STM32F4
This is supported with Embedded Coder. <http://www.mathworks.com/hardware-support/st-discovery-board.html ST Discovery Board> ...

8 years ago | 0

| accepted

Answered
How do I deal with this function handel error?
Try to remove: h(h<0) = 0; From your height function. This will help you.

8 years ago | 0

Answered
How do I open a new file for writing?
See: <http://www.mathworks.com/help/releases/R2015b/matlab/ref/fopen.html fopen> try using: fopen with 'w' instead of 'r'

8 years ago | 0

| accepted

Answered
create a surface plot from multiple 2d plots
% y = a*x*x + b*x + c x = -5:.1:5; a = -5:5; b = -5:5; y = a'*(x.*x)+b'*x; surf(y);

8 years ago | 0

Answered
How to code this equation ?
if you use Mupad (from the Symbolic Toolbox) you can always generate MATLAB functions automatically see here: <http://nl.math...

8 years ago | 0

Answered
K- Prototypes Cluster , convert Python code to Matlab
There is also the option of invoking Python from inside MATLAB... see the link: <http://nl.mathworks.com/help/matlab/getting-...

8 years ago | 2

| accepted

Answered
How to update a MATLAB uitable?
This video might help you: <http://nl.mathworks.com/videos/displaying-progress-status-of-long-running-script-part-2-uitable-1...

8 years ago | 0

Answered
Graduation project using matlab
If you are looking for inspiration: - Try the MathWorks Videos or the MathWorks user stories. Here is the video page: <h...

8 years ago | 0

| accepted

Answered
How do I Make A Plot Using System Time Values?
Maybe this will help you: mydata = readtable('sensor_log.xls'); mydata.Time=datetime(mydata.Time,'ConvertFrom','datenum','...

8 years ago | 0

Answered
Applying a fourth variable to a stem3 plot
Hi, I am not sure if you have seen on MATLAB Examples the following entry: <http://www.mathworks.com/examples/matlab/1112-...

9 years ago | 0

Answered
Charging/discharging characteristics of Battery on Simulink!
Hi Md, I realise that this may not be 100% what you are looking for, however this video might help you: <http://www.mathwo...

9 years ago | 0

Answered
How to pass a structure from Matlab to Python
Hi Jason, Have you seen this page in the R2015a documentation: <http://www.mathworks.com/help/matlab/matlab_external/handl...

9 years ago | 0

| accepted

Answered
How to read Hypespectral .dat and .hdr file
Have you seen: <http://www.mathworks.com/help/images/ref/hdrread.html Image Processing Toolbox Documentation: hddread>

9 years ago | 0

Answered
Arduino Leonardo Matlab Interface
Try the latest version of MATLAB - R2015a. http://www.mathworks.com/hardware-support/arduino-matlab.html It shows that Leo...

9 years ago | 0

Answered
How do I retain multiple model reference variants without cluttering the workspace with unused variant objects?
i believe that data dictionary will help: <http://nl.mathworks.com/help/simulink/ug/what-is-a-data-dictionary.html what is a dat...

9 years ago | 0

| accepted

Answered
How does surface plot(surf(x,y,z) work?
When I started using surf I also found it slightly confusing. What helped me figure it out was the documentation: <http://nl....

9 years ago | 0

Answered
solving a equation in MATLAB
<http://www.mathworks.nl/products/symbolic/code-examples.html?file=/products/demos/symbolictlbx/second_order_differential_equati...

10 years ago | 0

Answered
How can i get the expression of function from the Graph ??
However I would invite you to explore the Curve Fitting Toolbox. <http://www.mathworks.nl/products/curvefitting/videos.html P...

10 years ago | 0

| accepted

Answered
how to trasfer workspace values to another pc?
There are many ways of doing this... however a common way is using MAT Files. a = rand(10); b = rand(12); save myMat ...

10 years ago | 1

Answered
How to store an object (calculated in a function) so that we can use it later with a different script?
Typically people use MAT files for this. a = rand(10); b = rand(12); save myMat a b clear all l...

10 years ago | 1

| accepted

Answered
How to read a video in MATLAB R2009b?
mov = aviread(filename) mov = aviread(filename, index) Please note that the online documentation allows you to look up older...

10 years ago | 0

Answered
Embedded Coder for Matlab R2013b in Linux
http://www.mathworks.nl/matlabcentral/fileexchange/43093-embedded-coder-support-package-for-stmicroelectronics-stm32f4-discovery...

10 years ago | 0

Answered
Which experimenter kit should I choose for using PIL verification with Embedded coder
http://www.mathworks.nl/hardware-support/ti-c2000.html

10 years ago | 0

Answered
How can I construct CAN request messages and can response messages?
You will need Vehicle Network Toolbox http://www.mathworks.nl/products/vehicle-network/code-examples.html

10 years ago | 0

| accepted

Answered
How to use the dot product within a loop to multiply a series of rows?!
V = rand(1,3) C = rand(13,3) dot(V,C(1,:)) dot(V,C(2,:)) for i = 1:length(C) d(i) = dot(V,C(i,:)); end ...

10 years ago | 0

| accepted

Answered
How can I import data from .csv file with numeric values and texts (with column headers) into MATLAB Workspace?
If you right click on the .csv file you can use the “Import Tool” which will help you through the import process. you will be ab...

10 years ago | 14

Answered
how to add a frame to a video
Hi Sivakumaran, There are a couple of ways of doing this. - take a frame, add your watermark to it, save that frame, repea...

10 years ago | 0

| accepted

Load more