Statistics
RANK
26
of 273,571
REPUTATION
8,300
CONTRIBUTIONS
0 Questions
2,723 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
743
RANK
of 18,459
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Why are all the negative values in the matrix show as 0?
reltime is of class uint32, as shown here: load Foveal T = ans; class(T.reltime) An unsigned integer cannot be negative. If...
25 minutes ago | 0
i want to guide edit output has number+text
Z1 = 'j 6561'; set(handles.Z1,'string',Z1)
12 hours ago | 0
How do I sum the values of sections of a table?
table_a = readtable('Data1.xlsx'); %Create the new vector, schoolyear for i = 1:height(table_a) if table_a.month(i)>=8 ...
15 hours ago | 0
error in .m file Line: 1 column: 1 invalid text character - line 1 all #
"#" is not used in any MATLAB statements or expressions, unless it's inside a string or character array. Use "%" for comments.
15 hours ago | 0
I made a logarithmic graph, and I want to add a continuous linear line that follows the equation y = x with x values from 1 to N.
Perhaps you mean: plotyy(1:n,factorial,1:n,x)
15 hours ago | 0
| accepted
Extract data points from a plot corresponding to the plot legend
Here's one way: f = openfig('ExampleData.fig'); lines = findall(f,'Type','line') line_props = cell(1,numel(lines)); for ii =...
18 hours ago | 0
How can I increase the size of matrices in cell arrays with each iteration of a loop?
A 10x10 cell array where each cell contains a 1x3 vector: C = repmat({[0 0 0]},10,10); Another 10x10 cell array where each cel...
21 hours ago | 1
| accepted
How to make a statement true for column 5-6?
'is there a better way to express "column 5-6"' Yes. You can use all(). Specifically, all(~isnan(__),2) where the 2 tells all(...
22 hours ago | 0
How to split the last 4 elements in a column into a new column?
M = [5; 7; 2; 3; 6; 4; 9] You can't use a matrix, like you said, because the lengths of the two new column vectors is not the s...
23 hours ago | 0
| accepted
How to find the number of groups in another group?
M = [ 0 1 0 2 0 3 0 1 0 2 0 3 0 4 0 5 0 1 0 2 1 1 1 2 1 3 ...
1 day ago | 0
| accepted
mesh or surf from x y z coordinates
Maybe something like this: load swarm data = vertcat(f{:}); data = cell2mat(data(:,1)) I = scatteredInterpolant(data(:,[1 2]...
1 day ago | 1
How to select fields of a struct that contains certain string?
Maybe something along these lines: load table selected = []; for ii = 1:numel(trial_table) msg = {trial_table(ii).tria...
1 day ago | 0
| accepted
Round values to specific number
"want something that will suit not only 100, but any desiried number" You can do round(val./d).*d where val is the original num...
1 day ago | 1
How to use if/then to create a vector using values from a table.
"is this the proper way to use if/then to create the schoolyear vector? Is there another way you would do it using if/then?" Lo...
1 day ago | 0
How to extract data from different strata?
data = xlsread('Dataset.xlsx') data(:,end) = fillmissing(data(:,end),'previous'); stratadata = splitapply(@(x){x},data(:,1:end...
1 day ago | 0
Plotting graph for iterations of a for loop
First, let me run the code that calculates R: alpha_0 = [-1,-0.5,-0.1,0,0.1,0.5,1]; N = numel(alpha_0); R = nan(3,N); for a...
1 day ago | 0
How to combine data from 3 different arrays?
You can cat along the 4th dimension. Here's an example with random data: A = 10; B = 5; C = 8; G1 = 3; G2 = 6; G3 = 7; ...
1 day ago | 0
| accepted
Plotting Graph using data stored in Properties (app.property) in App Designer
In Button2Pushed, x, y, and z should be app.x, app.y, app.z.
2 days ago | 0
| accepted
plot function overwrites axes
If you haven't called hold on (or otherwise set the 'NextPlot' axes property, which is what hold does), then plot() does other t...
2 days ago | 2
| accepted
Index exceeds the number of array elements. Index must not exceed 1.
The first time through the for loop, i is 2, so on the right-hand side of your equations you are accessing x1rec(1), x2rec(1), y...
2 days ago | 0
| accepted
How can I draw contour lines in my problem ?
load Behi1 data = cell2mat(POFDE1); I = scatteredInterpolant(data(:,[1 2]),data(:,3)); [lat,lon] = meshgrid(unique(data(:,1))...
2 days ago | 0
| accepted
matrix addition according to position vector
A=[1 3 5 7 9 11; 2 4 6 8 10 12]; b=[1 1 3 4 5 3]; Maybe something like this: C = zeros(size(A)); ub = unique(b); for ii...
2 days ago | 1
| accepted
Find all row values from A matrix that match values of B matrix iterating thro rows from B matrix.
A = [3 6 9 12 2 4 7 4 5 3 1 10 5 6 8 9 10 11 ] B = [2 4 6 7 5 1 3 7 8 11 2 6] [ism,idx] = ...
2 days ago | 0
| accepted
How can I extract a specific row from a table?
load DateToFind result = T(ismember(T.Date,Date_to_find),:) Then, if you want those temperatures in a matrix with 9 columns:...
2 days ago | 1
| accepted
Graphic error with text annotations on app designer UIAxes
This is the expected default behavior; by default text objects have their Clipping property set to 'off'. The Clipping property ...
2 days ago | 0
| accepted
How to display specific values in xticks?
I think it's working. You want xticks at 0, 1000, 2000 and 3000 iterations, but your data has only 101 elements, so you only see...
3 days ago | 0
How do I make a column vector to add to my original matrix?
A = [1 3 5; -10 -8 -6; (sin(pi/2)) 5^3 (exp(-2))]; B_one = A(1,:) + 4; B_two = A(2,:) - 1; B_three = [(sin(pi/2)) 5^3 (exp(-2...
3 days ago | 1
Doing arithmatic to specific rows of a matrix
Here's an example that adds 6 to the second row of a matrix M: % define M M = [1 2 3; 4 5 6; 7 8 9] % add 6 to the second r...
3 days ago | 1
| accepted
4D Table Interpolation
Swap your definitions of m and n (or equivalently use rand(n,m)). Like you said, alpha is 1st dimension, beta is 2nd. alpha = ...
3 days ago | 0
| accepted
DIR multiple file extensions
You can put those dir() calls in cellfun: ext = {'*.txt','*.py','*.mp3','*.exe','*.jpg'}; extensions = cellfun(@(x)dir(f...
4 days ago | 0
| accepted