Réponse apportée
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...

presque 6 ans il y a | 1

| A accepté

Réponse apportée
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...

presque 6 ans il y a | 0

Réponse apportée
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...

presque 6 ans il y a | 0

Réponse apportée
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...

environ 6 ans il y a | 1

Réponse apportée
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...

environ 6 ans il y a | 0

Réponse apportée
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

environ 6 ans il y a | 0

Réponse apportée
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 ...

environ 6 ans il y a | 0

Réponse apportée
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 = [ ...

environ 6 ans il y a | 0

| A accepté

Réponse apportée
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" ...

environ 6 ans il y a | 2

| A accepté

Réponse apportée
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 ...

environ 6 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 6 ans il y a | 0

Réponse apportée
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...

environ 8 ans il y a | 0

Réponse apportée
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...

environ 8 ans il y a | 0

Réponse apportée
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...

environ 8 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 8 ans il y a | 0

| A accepté

Réponse apportée
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. ...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 8 ans il y a | 0

Réponse apportée
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...

plus de 8 ans il y a | 2

Réponse apportée
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 ...

plus de 8 ans il y a | 0

Réponse apportée
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...

presque 9 ans il y a | 1

Réponse apportée
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...

presque 9 ans il y a | 0

Réponse apportée
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...

presque 9 ans il y a | 0

Réponse apportée
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...

presque 9 ans il y a | 2

Réponse apportée
s-function error
Replace mdlInitializes with mdlInitializeSizes

presque 9 ans il y a | 0

Réponse apportée
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 ...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
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...

presque 9 ans il y a | 1

Réponse apportée
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...

presque 9 ans il y a | 0

A résolu


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

presque 9 ans il y a

A résolu


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

presque 9 ans il y a

A résolu


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

presque 9 ans il y a

Charger plus