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

mer än 7 år ago | 1

Solved


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

mer än 7 år ago

Solved


Right and wrong
Given a vector of lengths [a b c], determines whether a triangle with those sides lengths is a right triangle: <http://en.wikipe...

mer än 7 år ago

Solved


Trimming Spaces
Given a string, remove all leading and trailing spaces (where space is defined as ASCII 32). Input a = ' singular value deco...

mer än 7 år ago

Solved


Parasitic numbers
Test whether the first input x is an n-parasitic number: <http://en.wikipedia.org/wiki/Parasitic_number>. ( _n_ is the second in...

mer än 7 år 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...

nästan 8 år ago

Channel


MATLAB jobs on Indeed
List of jobs on Indeed

ungefär 8 år ago

Solved


Reverse Run-Length Encoder
Given a "counting sequence" vector x, construct the original sequence y. A counting sequence is formed by "counting" the entrie...

mer än 8 år ago

Solved


Making change
Given an amount of currency, return a vector of this form: [100 50 20 10 5 2 1 0.5 0.25 0.1 0.05 0.01] Example: Input a = ...

mer än 8 år ago

Solved


Free passes for everyone!
_Simply return the name of the coolest numerical computation software ever_ *Extra reward* (get a _freepass_): As an addit...

mer än 8 år ago

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

mer än 8 år ago | 0

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

mer än 8 år 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.

mer än 8 år 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'

mer än 8 år 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);

mer än 8 år ago | 0

Solved


Model a falling body
An object is falling freely from a height of 22 meters under the force of gravity. <<http://blogs.mathworks.com/images/seth/c...

mer än 8 år ago

Solved


Add damping to a mass spring system
Model an ideal mass-spring-damper system shown below where the spring is initially stretched. <<http://blogs.mathworks.com/im...

mer än 8 år ago

Solved


Make a full wave rectifier
Produce a full wave rectifier waveform for the given sine wave source. For a sine wave input, the output of the full wave rec...

mer än 8 år ago

Solved


Make a half wave rectifier
Produce a signal that outputs the given sine wave source when it is greater than zero and outputs zero when it is less than zero...

mer än 8 år ago

Solved


Add offset to a signal
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/add-offset-eqn.png>> You should see a downward...

mer än 8 år ago

Solved


Produce a sine wave
Produce a sine wave with amplitude 3: <<http://blogs.mathworks.com/images/seth/cody/sine-eqn.png>>

mer än 8 år ago

Solved


Add a block to a model
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/add-block-eqn.png>> In this case, the slope of...

mer än 8 år ago

Solved


Produce a cosine wave
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/cosine-eqn.png>>

mer än 8 år ago

Solved


Connect blocks in a model
Connect the blocks in the model to produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/connect-blocks...

mer än 8 år ago

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

mer än 8 år 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-...

mer än 8 år 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...

mer än 8 år 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...

mer än 8 år 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','...

mer än 8 år ago | 0

Submitted


cityjumper/publishUtils
MATLAB Publish with enhanced HTML Features.

mer än 8 år ago | 1 download |

Load more