Réponse apportée
How do I restrict my data that needs to be plotted?
C = A(60,:); indices = C<40000; C_in_Range = C(indices); plot(C_in_Range) axis([200,300,0,40000])

environ 13 ans il y a | 0

Réponse apportée
Vary Variable name in a for loop
you can create a name with this: myvarname = cell(3,1); for j=1:3 myvarname{j} = sprintf('Trace_1_1_%u_1',j) end ...

environ 13 ans il y a | 0

Réponse apportée
How to convert daily data to monthly?
Every 30 data rows, I would average them out and save it in 1 row.This way, 30 days shrinks down to 1 data (a month). Or another...

environ 13 ans il y a | 0

Réponse apportée
using ssSetNumInputPorts but no change in inputports...
You need to command MEX thenameofyourCcode In MATLAB's command window, and then reopen the model to see the change.

environ 13 ans il y a | 0

Réponse apportée
Simulink: combine real and complex signals
In Simulink there are blocks that handle complex numbers. Open the Simulink Library browser and in the search box on the top ...

environ 13 ans il y a | 0

Réponse apportée
Does ode45 hits events depending on the maxStep value?
As far as for a numerical ODE solver, i.e. ODE45, you can never get anything exact. Your solution is not exact and the events so...

environ 13 ans il y a | 0

Réponse apportée
How to input and solve non-linear system of equations in a matrix form
Offcourse you cannot write a nonlinear equation in a matrix form. Matrix form is only possible for linear sets of equations....

environ 13 ans il y a | 0

Réponse apportée
How to open a file and store it in cell array?
YourFilePath = 'C:\My Documents\Myfolder1\myfile.txt'; fid = fopen(YourFilePath ,'w'); fprintf(fid,'whatever I want...

environ 13 ans il y a | 0

Réponse apportée
I'm trying to find if certain points are inside or outside a polygon
I think one should be able to easily do a simple inequality and find out of a point is outside or inside a closed curve. Here's...

environ 13 ans il y a | 0

Question


How to save a buffer from a tlc file and use it in another tlc file
In writing TLC files, I want to open a buffer and write stuff there and close it and use the buffer at another TLC file which wi...

environ 13 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
[simscape] how can I write a difference between output and input?
M = foundation.thermal.thermal; M is defined as an element of a structure. The structure names are fixed. I don't know if yo...

environ 13 ans il y a | 0

Réponse apportée
Optimization using fmincon for a simulink model
My suggestion, move everything in MATLAB script language (m-files) if possible and don't do an optimization in Simulink. You can...

environ 13 ans il y a | 0

Réponse apportée
my matlab does not recognize the function sym. how can I solve this problem?
you need to purchase the Symbolic Math Toolbox. You probably don't have it. check syms x;

environ 13 ans il y a | 0

| A accepté

Réponse apportée
any application closing using matlab
You need to execute a dos command. Here's a piece of MATLAB's help: Please see the documentation on status = dos(command)...

environ 13 ans il y a | 0

Réponse apportée
How do you get Matlab to return a value for how many 1's are in a vector containing just 1's and zeros
>> greencars=[1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0] >> numer_of_ones = sum(greencars)

environ 13 ans il y a | 1

| A accepté

Réponse apportée
Enlarge sample time in simulink
You can use, Simulink block named "Signal Generator" or "Repeating Sequence" or a "Pulse Generator" in the sources library of Si...

environ 13 ans il y a | 0

Réponse apportée
Creating a movie for n-body simulations
use "getframe" and "addframe" to "avifile" object. Look them up in help to learn how to make a movie. if you have the center o...

environ 13 ans il y a | 0

Réponse apportée
How do I pass Simulink variables from the “Configuration Parameters” to a GUI created using GUIDE?
Look up slConfigUIGetVal in MATLAB help.

environ 13 ans il y a | 0

Réponse apportée
Calculating time for an external application executated from matlab
in MATLAB script tic % your calcs time = toc gives you the time in seconds.

environ 13 ans il y a | 0

Réponse apportée
Multiply matrices with complex values
The result is equivallent to A = [1+1i, 2+2i; 3+3i 4+4i]; B = [1+1i, 2+2i; 3+3i 4+4i]; C = abs(A)*abs(B) since ...

environ 13 ans il y a | 0

Réponse apportée
How do I access data from an array using for statements?
z = [ones(15,1),2*ones(15,1)] for j = 2:size(z,1) vel = z(j,1); % element of jth row and 1st column end

environ 13 ans il y a | 0

Réponse apportée
Creating a vector field
I don't know why you put a zero at the end of VectorX and a zero at the beginning of VectorY which makes those lines incorrect. ...

environ 13 ans il y a | 2

Réponse apportée
Blocks in Model seem to disappear when zooming in or out
I think you are panning and zooming. The blocks don't disappear. They are there but you need to scroll all the way up to see the...

environ 13 ans il y a | 0

Réponse apportée
Integrating multiple generators to a single system
In the configuration Parameters dialog box, check the sampling time for all the models. If the sampling time is on "Auto" then M...

environ 13 ans il y a | 0

Réponse apportée
Terminating some Simulink samples
this is how I would do it: I would put a clock block (in Simulink sources library) and connect it to a "compare to constant" ...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
How to access Fundamental Sample Time value within a simulink model
In Simulink Library Browser, go to the Simulink, Signal Attributes, section. There is a block called Weighted Sample Time. Th...

environ 13 ans il y a | 1

Réponse apportée
Undefined Variables Error - Using GUIDE
Before that line, where gives you the error, line # 286, add this line: detector_type = handles.detector_type; Please not...

environ 13 ans il y a | 0

Réponse apportée
Solving non linear equations
YOu don't need to write your own nonlinear equation solver as MATLAB already has powerful built-in commands to do this, like fso...

environ 13 ans il y a | 1

Réponse apportée
How replace open by another function?
make sure, close(vidOut), the file is already closed and not corrupted. restart MATLAB then do it in command window to make sure...

environ 13 ans il y a | 0

Réponse apportée
How do I improve loop performance when going through a large dataset? Or use another method?
My understanding of your question is that, you need to find specific data inside a huge structure. Your structure called invento...

environ 13 ans il y a | 0

Charger plus