
Jon
Statistics
RANK
75
of 277,794
REPUTATION
1,855
CONTRIBUTIONS
10 Questions
689 Answers
ANSWER ACCEPTANCE
80.0%
VOTES RECEIVED
201
RANK
of 18,797
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 128,975
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Appy lsqcurvefit to multiple data sets with multiple parameters
Can you stack your data, so that if for example, using your terminology, Xdata_1,Xdata__,.. Ydata_1, Ydata_2,... Then fit Xdata...
5 days ago | 0
Matlab Margin Display From a Bode Plot Code
Assuming you have the Control System Toolbox, as you say there is already a function for computing the margins. If so, why not j...
6 days ago | 0
How to use cell as an input argument in an App?
You can add properties to your app and assign values to them, for example when the app is initialized. Then inside of your callb...
7 days ago | 0
| accepted
Find path through logical matrix (only walking right or down)
It seems natural to think of this as a graph traversal question, where the nodes in a directed graph are the locations in the ma...
11 days ago | 1
Reorganizing integer vector preserving order
I think this does what you are asking xp = [2 5 6 13 8 14 4 9 3 1 12 16 15 7 ...
12 days ago | 0
| accepted
A way to make the Simulink program run and then perform the calculation
You can set the model's StopFcn call back for this purpose. Go to the Modeling tab, model settings, properties,callbacks, and a...
17 days ago | 0
| accepted
Determining the response of the system to time-varying input in Simulink MATLAB
There are a number of ways you could apply this input signal. One simple way is to use the from workspace block, then use a scri...
20 days ago | 0
Writing inside cell array
Is this what you are asking for? y = cell(3, N); for i = 1 : N y(:, i) = f(i); end
20 days ago | 0
| accepted
Why does two sine waves of different phase give different output after double integration?
There is not an any error. This is just the physics/calculus of the situation. In the first case (zero phase) the input acceler...
25 days ago | 0
| accepted
I have several error for this code.Error line 138 and 141 . error [X,V,orig_size_v] = reshapeAndSortXandV(X,V); can you solve this error?
Cd = interp1(A1,cd1,A,'linear'); A1 has 37 elements, cd1 only has 36, to use the interp1 function the two first arguments must ...
25 days ago | 0
Error using table (line 231) All table variables must have the same number of rows. Error in correct1 (line 35) disease_cure_table = table(all_diseases,all_Pests, all_cures,
When in your DiseaseCure.csv file you only have two columns, Diseases-Pests, and Cure and then you read these into the table dat...
25 days ago | 0
Extra zeros added to a TF by zero()
Thanks for attaching your data. As suggested in my original comments, and by @John you are seeing the effect of pole zero canc...
25 days ago | 0
| accepted
creating a warning dialog that wait until the user press ok, if the user press x the execution stops
Does the behavior demonstrated in my example below do what you want? for k = 1:10 if k ==3 % condition simulating duplicat...
26 days ago | 1
Add all values from loop to an array
Let's say you want to store the values you have selected from each sheet in an array called outDat, you could modify your code t...
27 days ago | 0
How to solve "Not enough input arguments."
You could also do it all with a very simple loop pentadiagonal(7) function pinaka = pentadiagonal(n) pinaka = zeros(n,n); ...
29 days ago | 0
A way to speed up my custom interpolation algorithm?
You could try benchmarking this way too for comparison xe = [x inf] yq = y(xq >= xe(1:end-1) & xq <xe(2:end)) This returns ...
29 days ago | 0
I'm trying to use the table function, How do I show all the outputs for each iteration?
You need to assign your values in the loop to arrays so that they are saved. Could do something like this: xl=1.5; xu=3; erro...
1 month ago | 0
Find the heat rate exchanged by a cylindrical fin and find a conical fin geometry that exchanges the same heat rate
Let's say the heat exchange rate for the pin (cylindrical) fin for your specified geometry has been found to be equal to a valu...
1 month ago | 0
Using ismember with some margin
You can use ismembertol for this SSnoisy = SS + randn(size(SS))*0.01 idx = find(ismembertol(BS,SSnoisy,0.05))
1 month ago | 0
Use a subset of number to find the index in a bigger set
BS = [2.33, 4.55, 5.88, 3.98, 4.66, 7.99, 2.33, 9.55]; SS = [4.55 4.66 7.99]; idx = find(ismember(BS,SS))
1 month ago | 0
| accepted
Error using horzcat Dimensions of arrays being concatenated are not consistent
On line 34 H1 has m*(m-1) rows, but extra_cols only has m rows. So you can not horizontally concatenate H1 and extra_cols using ...
1 month ago | 0
(0) I couldn't run this code on Matlab. I want to see the output generated from Simulink
You have many errors in your code. I have attached a cleaned up version that at least runs. I put a comment %** on each line I a...
1 month ago | 1
How i can i Ensure that my 2 vectors have the same size?!
If you want DAPEAK_in to have the same dimension as DAPEAK_out then I assume you want both of them to have the same dimesion as ...
1 month ago | 0
| accepted
Convert to array/cell
Define one function to do the work, and then call this same function from each of the callbacks
1 month ago | 0
| accepted
How to return random unique values based only on the value in each row for the first colomn?
Here's another way, with no loops % Example data matrix % I modified this a little from your example to have % multiple occu...
2 months ago | 0
| accepted
how to fix error message Invalid expression as When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters.
The specific error you get is for line 22 where you have legend('x_1', 'x_2', 'x_3', ... (list all the state variables), 'x_n')...
2 months ago | 0
Attach first column with names to matrix with coordinates
You can put the data into a table, and assign row names For example x = rand(5,1); y=rand(5,1); z=rand(5,1); names = {'cat'...
2 months ago | 0
| accepted
Array rows differences and array filling in a loop
This would be one way to do it A = [1 3;2 5;4 6;7 10;100 150;230 270]; % input array example [n,m] = size(A); % additional var...
2 months ago | 1
Unable to perform assignment because the indices on the left side are not compatible with the size of the right side.
In the first iteration of the outer loop (mi = 1) Your variable Arr_LIS has 10 rows as kron(arrL_a(:,l), arrL_e(:,l)) is 10 b...
2 months ago | 1
Run matlab with excel
You can use Spreadsheet Link for this type of application https://www.mathworks.com/products/spreadsheet-link.html
2 months ago | 0