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

alrededor de 8 años hace | 0

Respondida
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?');

alrededor de 8 años hace | 1

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

alrededor de 9 años hace | 0

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

alrededor de 9 años hace | 0

| aceptada

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

alrededor de 9 años hace | 0

Respondida
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'

alrededor de 9 años hace | 0

| aceptada

Respondida
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);

alrededor de 9 años hace | 0

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

alrededor de 9 años hace | 0

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

alrededor de 9 años hace | 2

| aceptada

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

alrededor de 9 años hace | 0

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

alrededor de 9 años hace | 0

| aceptada

Respondida
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','...

más de 9 años hace | 0

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

más de 9 años hace | 0

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

más de 9 años hace | 0

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

más de 9 años hace | 0

| aceptada

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

más de 9 años hace | 0

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

más de 9 años hace | 0

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

casi 10 años hace | 0

| aceptada

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

casi 10 años hace | 0

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

más de 10 años hace | 0

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 1

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

más de 10 años hace | 1

| aceptada

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

más de 10 años hace | 0

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

más de 10 años hace | 0

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

más de 10 años hace | 0

Respondida
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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 14

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

más de 10 años hace | 0

| aceptada

Cargar más