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

8年以上 前 | 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,...

8年以上 前

解決済み


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

8年以上 前

解決済み


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

8年以上 前

解決済み


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

8年以上 前

解決済み


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

8年以上 前

チャネル


MATLAB jobs on Indeed
List of jobs on Indeed

約9年 前

解決済み


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

約9年 前

解決済み


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

約9年 前

解決済み


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

9年以上 前

回答済み
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...

9年以上 前 | 0

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

9年以上 前 | 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.

9年以上 前 | 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'

9年以上 前 | 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);

9年以上 前 | 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...

9年以上 前

解決済み


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

9年以上 前

解決済み


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

9年以上 前

解決済み


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

9年以上 前

解決済み


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

9年以上 前

解決済み


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

9年以上 前

解決済み


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

9年以上 前

解決済み


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

9年以上 前

解決済み


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

9年以上 前

回答済み
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...

9年以上 前 | 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-...

9年以上 前 | 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...

9年以上 前 | 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...

9年以上 前 | 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','...

9年以上 前 | 0

送信済み


cityjumper/publishUtils
MATLAB Publish with enhanced HTML Features.

9年以上 前 | ダウンロード 1 件 |

さらに読み込む