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

9 years 前 | 1

已解决


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

9 years 前

已解决


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

9 years 前

已解决


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

9 years 前

已解决


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

9 years 前

已解决


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

9 years 前

频道


MATLAB jobs on Indeed
List of jobs on Indeed

10 years 前

已解决


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

10 years 前

已解决


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

10 years 前

已解决


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

10 years 前

已回答
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...

10 years 前 | 0

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

10 years 前 | 0

| 已接受

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

10 years 前 | 0

已回答
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'

10 years 前 | 0

| 已接受

已回答
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);

10 years 前 | 0

已解决


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

10 years 前

已解决


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

10 years 前

已解决


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

10 years 前

已解决


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

10 years 前

已解决


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

10 years 前

已解决


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

10 years 前

已解决


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

10 years 前

已解决


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

10 years 前

已解决


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

10 years 前

已回答
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...

10 years 前 | 0

已回答
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-...

10 years 前 | 2

| 已接受

已回答
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...

10 years 前 | 0

已回答
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...

10 years 前 | 0

| 已接受

已回答
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','...

10 years 前 | 0

已提交


cityjumper/publishUtils
MATLAB Publish with enhanced HTML Features.

10 years 前 | 1 次下载 |

0.0 / 5

加载更多