
Jon
Statistics
RANK
84
of 260,649
REPUTATION
1,619
CONTRIBUTIONS
10 Questions
582 Answers
ANSWER ACCEPTANCE
80.0%
VOTES RECEIVED
171
RANK
of 17,909
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 112,061
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
Creating an image using row number, column number, and corresponding Intensity?
Suppose you have your data as you describe in matrix A, then you could use: B = zeros(256,256); % preallocate array to hold ima...
23 hours ago | 0
| accepted
How to turn a Yes/No cell array into binary (0-1)
A = {true,false;false,true} B = cell2mat(A)
23 hours ago | 0
Combining multiple CSV's from a list of csv pairs
So for each row in the original "pairings.csv" you want to create a new .csv file, let's say for the 893rd row you would call th...
6 days ago | 0
Making a logical calculation
You can do the calculation for each sheet within your main loop. Then output it to the location you want in the sheet using writ...
6 days ago | 0
I want to stop my simulink code after 10 seconds of running
So I'm assuming you mean that you want the Simulink model to run for 15 seconds of real time. Otherwise if you just want it to r...
6 days ago | 0
square wave not "limited"
You probably are not correctly specifiying the duty cycle. If you want the square wave to be "on" half the time you should set d...
6 days ago | 0
| accepted
Plotting 2 different figures but MATLAB outputting same plot.
Are you sure that you aren't getting an error in your code after the first plot is made? Check the command window for errors. ...
7 days ago | 0
| accepted
Why is ode45 not working when I insert the options input?
Try ode15s instead, it seems to converge, you have to check if the answer makes sense %CALLING FUNCTIONS options=odeset('RelTo...
7 days ago | 0
| accepted
Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters.
On the right hand side of your equal sign you forgot to put the name of the function you were calling, you just list the argumen...
7 days ago | 0
| accepted
Creating xlsx with multiple sheets
Use the Sheets name value pair in writetable For example: writetable(newTable,'TIME_OF_USE.xlsx','Sheet','mySheetName'); You ...
8 days ago | 0
How to upload a CSV file using a button on App Designer and using its content in another function.
I have attached a very rough example to get you started along with a data file to try it with. Here are the main ideas (using A...
8 days ago | 1
| accepted
How to fill missing frequency response data at the beginning and end?
You could fit your frequency response data with a transfer function model, and then use the model to generate the missing data. ...
12 days ago | 1
cell with not consistent dimensions to double
X = cell2mat(cellfun(@max,Zeit_Flutende_10000_BA,'UniformOutput',false)) Note that you have at least one empty entry, for exam...
12 days ago | 0
| accepted
User input folder path in App Designer with multiple tables
You need to define a value changed callback function for each Edit Field, something like this for the first one, and then simila...
13 days ago | 0
Transfer Function Models in the System Identification App
The transfer function models in the System Identification Toolbox are linear systems. If, for the range of inputs, and possibly ...
14 days ago | 0
Extract values at a particular time of a simulation to use in the same simulation
You can use the "Stop Simulation" block for this purpose. This block stops the simulation when its input becomes true (non-zer0)...
14 days ago | 0
| accepted
how to delete all row contain a 1's and how to delete a column contain 1's. Q=[3 1 1 0 0 1;1 3 1 0 1 0;1 1 3 1 0 0;0 0 1 3 1 1;0 1 0 1 3 1;1 0 0 1 1 3]
icd = any(Q==1,1) ird = any(Q==1,2) Qnew = Q(~ird,~icd) In the example matrix you provide, every row and every column contain...
14 days ago | 0
Variance using median filter
In your expression: variance = medfilt2(double(I_noise).^2, [N N], 'symmetric') - (medfilt2(double(I_noise), [N N],'symmetric')...
16 days ago | 0
How to determine sign properties (++, +-, --) of sum block using matlab coding
Suppose your Simulink model is called myModel, and the sum blocks are named Sum1 and Sum2. You can get the signs, for example ...
16 days ago | 0
| accepted
Finding the difference in growth rate between graphs
I'm assuming you want to characterize the growth rates, by the instantaneous rate of change of your control and test values. By ...
21 days ago | 0
| accepted
write number next to each other + return value 0/1
Let us say your table is called T, then you can use: T.ID = string(T.hod) + string(T.min) + string(T.s) + string(CasVSekundach...
22 days ago | 0
| accepted
I want to concatenate two coloumns of table.
I am assuming you have a single MATLAB table, let's call it T, with two columns, one called freqa and another freqb. In this ca...
27 days ago | 0
| accepted
how to filter out column of data with zero value on continuous signal in simulink?
I would suggest assigning the "Initial output" parameter of your Transport Delay block and the "Initial Condition" of your Memor...
29 days ago | 0
| accepted
How do I send data to excel formula input cell , and receive the output cell data back to Matlab command window. Any examples please help thanks ?
Assuming it is really required that you go back and forth between Excel and MATLAB you can use MATLAB's spreadsheet link product...
30 days ago | 1
Index in position 2 must be positive or logical value error?
I think the problem is that you are rounding to 2 decimal place rather than just rounding to an integer. This makes indices for ...
30 days ago | 0
convert python code into Matlab
Do you actually need to convert your python code into MATLAB (as it says in your question title) or just use Python code from MA...
30 days ago | 0
Behavior of isPassive and hinfnorm.
I'm thinking that you may have some numerical issues with poles very close to the jw axis. Your transfer function uses quite hig...
1 month ago | 2
| accepted
Extract all indexes inside a text file
I'm not quite clear what you want to do with the data, but I'm assuming you want to get the text table into some form that you c...
1 month ago | 1
| accepted
Anti-aliasing filter design
For the purposes of preventing aliasing the only thing that is essential is that the resulting frequency content that is above ...
1 month ago | 0
I have a 32*1 cell array. How I can convert it to categorical?
You could do something like this: % As an example make a cell array whose elements are random matrices numMatrices = 10; % num...
1 month ago | 0