Answered
when a save figure , the numbers appear in the name of the png with e+0X
Change your format spec to '/Figures/Distance_%d@%.3f.png' You might want to read up on the documentation for this: https://w...

6 years ago | 1

| accepted

Answered
How to get a variable value in the gain block. This variable value is defined in a Matlab function block.
To do this, I would use a Multiply block instead of a gain block. Make x an output from your Matlab function block. Connect th...

6 years ago | 0

Answered
How to quickly find the first non-zero element without iterations in all columns in a sparse matrix?
Try this. In my test with a 1000x1000 random sparse 0 or 1 matrix (A = sparse(randi([0 1], 1000, 1000));) it is about 4 times f...

6 years ago | 0

Answered
can some xxplain what the following program does? Thank youuuu!: peso=5000; while (peso > 0) disp (‘I order another coffee’); dollar = dollar – 250; end disp (‘I finished drinking
Per Stephens comment, I'm repeating my comment as an answer (with some additions). This script does pretty much nothing other t...

6 years ago | 1

Answered
How can i discretize a signal within simulink?
Look at the ZOH (https://www.mathworks.com/help/simulink/slref/zeroorderhold.html) and Unit Delay (https://www.mathworks.com/hel...

6 years ago | 0

Answered
How do I find maximum value of n so that 2^n is less than a value (ex, 500?)
I think you may be looking for log2. Documentation available here: https://www.mathworks.com/help/matlab/ref/log2.html

6 years ago | 0

Answered
Diagonal matrix, wishing to solve Ax=b
I thought that I had commented on this question earlier with something that should work for you. Here is the code that I think ...

6 years ago | 0

Answered
help with inefficient code
Try this. There may be a more efficient approach but I'm pretty sure this will be faster than what you have now. T1.time = [ ...

6 years ago | 0

| accepted

Answered
Array indices must be positive integers or logical values.
The error text pretty much explains why you are getting an error. "Array indices must be positive integers or logical values" ...

6 years ago | 2

| accepted

Answered
How can I know if my laptop is plugged into AC power via Matlab?
That error message (''pmset' is not recognized as an internal or external command, operable program or batch file) is a Windows ...

6 years ago | 1

| accepted

Answered
Extracting a value from a 3D table
A 3d example using Matlab's indexing functions instead of floor and rem: t3=[1 2 NaN; 4 5 6; 7 8 9]; % a 2d matrix with one N...

6 years ago | 0

Answered
Legend not working with plot (just have some incorrect colors)
If you make the 'for radius = r' loop the inner loop instead of the outer loop, you should get what you want. What is happeni...

8 years ago | 0

Answered
I would like to evaluate a function for N=11,21,51,and 101 using a for loop, but I can only get it to do the last N.
You will need to use an array to store the four different df results. Since your df is going to be different sizes depending on...

8 years ago | 0

Answered
How do I fix Invalid first data argument ?
The plot() function requires variables as arguments, not a character vector (which is what you have created by putting single qu...

8 years ago | 0

| accepted

Answered
How to remove markers in plot at specified places?
If the goal is to remove all of the markers except for the 'outer' ones, then try this. This should be relatively generic (inde...

8 years ago | 0

| accepted

Answered
My Function is supoosed to return 55 when i call it with 10 based off of pyramid sum. However my function gives me 20. Please help
The *main* problem with this code is that you are using the same variable for the loop index and for accumulating your result. ...

8 years ago | 1

| accepted

Answered
Having Trouble with enable/delay etc in Simulink
It sounds like you just need an Integrator with your 'enable' signal as the input instead of a Ramp block. When 'enable' is one...

8 years ago | 0

Answered
How can I display Index of a data point on the Data Cursor?
Try this (modify the num2str calls as you wish to get the number of digits you desire): function output_txt = datatip_cb15d...

8 years ago | 2

Answered
how do you make an interpolation such that it interpolates the value betwee the first and the last array entry?
*_IF_* you are saying that the 'position = 100' value is the same as the 'position = 0' value then you can just do a modulo 100 ...

8 years ago | 0

Answered
Matlab Function block code
Note that you can also do this with simple Simulink blocks (and no Matlab function block). If you don't have to protect against...

8 years ago | 1

Answered
Create Lookup Table in Matlab
As Image Analyst said, I think interp1 is the way to go. However, I would just call it with the specific angle for which you wa...

9 years ago | 0

Answered
Error in saveas, can't create png files
It looks like you may have another function or variable that is 'shadowing' the built-in print function. Try 'which -all pr...

9 years ago | 0

Answered
Not just another dynamic variable naming question! Generating a new string and using it in a command.
A lot of what I'm going to say has already been said by far smarter people on this thread. I'm going to rephrase from a less sp...

9 years ago | 2

Answered
s-function error
Replace mdlInitializes with mdlInitializeSizes

9 years ago | 0

Answered
Print figure to a specific path
You need to pass a handle to the figure you wish to print. The parameter 'Ult_Stress_vs_Temp' is, I assume, maybe the title of ...

9 years ago | 0

| accepted

Answered
Step is plotting backwards
This transfer function is unstable. It has a pair of complex (oscillatory) poles that are slightly in the right half plane. Thu...

9 years ago | 1

Answered
Figure looks small and zoomed out
You have defined an image that is only 9x20 pixels. How big would you expect that to be (especially on your high resolution dis...

9 years ago | 0

Solved


Matrix of almost all zeros, except for main diagonal
Write a program to input an integer n and build a n-by-n matrix with the numbers 1,2,...,n on the main diagonal and zeros elsewh...

9 years ago

Solved


Model a mass spring system
Model an ideal mass-spring system shown below where the spring is initially stretched. <<http://blogs.mathworks.com/images/se...

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

9 years ago

Load more