Beantwortet
generating a more detailed contour plot
If you want more contor lines (is this what you mean by resolution?) you can use the additional levels argument to do this, so f...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to properly structure code in appdesigner?
I have been taking an approach where I try to keep the code in the app designer very simple and then define a class which provid...

etwa 4 Jahre vor | 1

| akzeptiert

Beantwortet
Holding the Previous Value of For Loop and Sum
The problem is that you overwrite your value of data each time the inner loop is executed. If you just want to plot each image ...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
Finding the average temperature of a thermal image
If there is a sufficient difference between the background temperature and the hand temperature, then you could just set a thres...

etwa 4 Jahre vor | 0

Beantwortet
i need a for loop that outputs certain numbers
incr = 2; % increment value numIter = 3; % number of iteration x = 1; % initial value X = zeros(numIter,2); % array to hold v...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
How can I transform polynomials such that they overlay each other?
Assuming you want them to match at some particular value of x you could do something like this. By the way the first curve in y...

etwa 4 Jahre vor | 0

Beantwortet
How to calculate th mean/average value for a repetetive time step
You should be able to use MATLAB's movmean https://www.mathworks.com/help/matlab/ref/movmean.html for this without any loops

etwa 4 Jahre vor | 0

Beantwortet
state space matrix magnitude changes sampling rate
I think that you are just getting a little confused about the time scaling. In the nominal case you can see that the system rea...

etwa 4 Jahre vor | 1

| akzeptiert

Beantwortet
ODE45 projectile angle input
Using ode45 you integrate (solve the differential equations) for the x and y components of the velocity and position. The initi...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to execute a task every 20 minutes for 10 hours every day from 7:00 to 17:00
You could use two timers. The first timer would execute with a 24 hour period executing at 7:00AM each day. Its callback functi...

etwa 4 Jahre vor | 0

Beantwortet
How do I create a loop for this calculation in MATLAB?
Slightly different interpretation of how you want to do loops, I ignored the first comment about 25 iterations. Regardless it se...

etwa 4 Jahre vor | 0

Beantwortet
How to create table or matrix from these cell array in MATLAB?
I'm not sure what you want to do with the data, but you could organize it in a table where each row is a test (or whatever the 5...

etwa 4 Jahre vor | 0

Beantwortet
How to combine two matlab functions to get only one?
This would be one approach, in which you keep your original MA_from_TA function, but within Time_of_Flight you call it twice fu...

etwa 4 Jahre vor | 1

| akzeptiert

Beantwortet
Find indexes in cell array
R1={'2B' , '1A' , '1A' , '2B' , '1D' , '1A+1C' ,'1A+1C' , '1D' , '1A+1C' , '1B+1E' , '1B+1E', '1D'} C1={'1A' , '2B' , '1A+1C' ,...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
Splitting a matrix according to there labels
This is one way to do it % make an example data file with last column having either a "label" of 1, % 2, or 3 data = [rand(...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to save figures and subplots App Designer
This is a way of making a screen shot of the figure within app designer plot(app.UIAxes,1:100,rand(1,100)) ...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to plot data from JSON Structure array
I don't understand what you are expecting to happen in your example code. Your variable downloaded_data is assigned to an array...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
is it possible to further plot Figures previously saved in .fig or .png mode?
Save your figures as .fig files. Then follow the directions in this previous post which explains exactly how to put the figures...

etwa 4 Jahre vor | 1

| akzeptiert

Beantwortet
column number extract using find function..
A = [ 0 500 1000 1500 2000 2500 3000 3500 x1 x2 x3 5500 6000 6500 7000 7500 8000 8500 9000 9500 10000 ] ; matchVals = [500,10...

etwa 4 Jahre vor | 0

Beantwortet
I'm having this kind of error in the below code g Error using ceil Too many input arguments. Error in g (line 6) CG = ceil(G,1);
Unless the first argument to the ceil function is a duration (time) then ceil only takes one argument. So in your call it doesn'...

etwa 4 Jahre vor | 0

Beantwortet
4 Dof response with state space formulation and ode45
You may have other errors too, but one thing that doesn't look correct is the multiplication A1*y in your odefun. A1 is an 8x8...

etwa 4 Jahre vor | 1

Beantwortet
Assigning an iterative variable a script
The problem is that you preallocated suit1, and suit2 as a vector of doubles (numeric values), but then in the loop you assign ...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
Find closest sphere in a cluster with random spheres having different diameters-2
Here is another approach, in which we consider the spheres to be nodes in an undirected graph with edges connecting the nodes wh...

etwa 4 Jahre vor | 1

| akzeptiert

Beantwortet
spectrogram of data set
Please see the documentation and in particular the example shown in https://www.mathworks.com/help/signal/ref/spectrogram.html ...

etwa 4 Jahre vor | 0

Beantwortet
how to get step response for two inputs in for state space model ?
Your system has 7 inputs and one output. Your code already plots the step responses to each of the seven inputs as shown in atta...

etwa 4 Jahre vor | 1

| akzeptiert

Beantwortet
Get all labels from my simulink model
I'm not sure exactly what information you are looking for but I think you should be able to use the find_system function to get ...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
the value of the row and columns
val = x(2,5)

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to conditionally and by groups subtract one row from another in table?
Is this what you want: country = categorical(["USA";"USA";"USA"; "Canada"; "Canada"; "Canada"]); sector = categorical(["supply...

etwa 4 Jahre vor | 1

| akzeptiert

Beantwortet
Create average data file and plots
You will have to read the data back out of the individual data files, store the variables of interest in arrays, and then comput...

etwa 4 Jahre vor | 0

Beantwortet
split image and create a new one using this pieces
Does this do what you want: % make an example image A = randi(128,128); % chop it up into 32 x 32 squares B = reshape(A,32...

etwa 4 Jahre vor | 1

Mehr laden