Statistics
RANK
24
of 276 018
REPUTATION
8 970
CONTRIBUTIONS
0 Questions
2 923 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
804
RANK
of 18 585
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
How can I calculate the index of when the sequence starts to repeat?
The idea here is to successively check whether V is the same as a repeated sequence of its first T elements. Starting with T = 1...
10 dagar ago | 1
| accepted
Caesar's cypher working incorrectly
I can't find the function islower in MATLAB. Maybe that's a function you wrote yourself, and if so maybe it works correctly, but...
10 dagar ago | 0
How do I loop over all columns in a cell array?
load('balls_data.mat') balls_data is a cell array of cell arrays, except for two cells, which contain empty 0-by-0 numeric matr...
11 dagar ago | 1
App designer Edit field, position
pos1 = "[1 2 3 4]"; pos = str2num(pos1)
11 dagar ago | 0
| accepted
Trying to answer a math problem using newton's method but having problem in the function.
Multiplication is * or .* but never . as in 4.x and never implicit as in (x^2)z log10 is base-10 logarithm. log is natural loga...
11 dagar ago | 0
How to delete a specified string value in a nested cell array
If AOI is a cell array of cell arrays of character vectors, like this: AOI = {{'AOI 1';'AOI 2';'NO AOI';'AOI 3'}; {'NO AOI';'NO...
11 dagar ago | 0
| accepted
I want to use fprintf to make a table of results
fprintf(' %6.3f %6.3f\n', [standard, average].')
12 dagar ago | 0
How to create multiple structure variables and assign values to them at one line.
One way: [AC.a, AC.b] = deal(5, 15); AC Another way: C = {5, 15}; [AC.a, AC.b] = C{:}; AC https://www.mathworks.com/h...
12 dagar ago | 0
How to append cell arrays to from a unique array and then fill one of its column out with data from excel sheets?
Obviously if you just wrapped that code in a loop, your variable stations1 would be overwritten on each iteration of that loop, ...
12 dagar ago | 0
| accepted
How can I fix the error: Index exceeds the number of array elements (1)?
clear B_n = -5.36; omega_d = 400; zeta = 29; tt=0.01; upTo_t=10; N = upTo_t*100; total = zeros(N, 1); t=0.01*(1:N); f...
12 dagar ago | 0
| accepted
How can I replace a certain pattern in a string?
One way: oldstr = 'abbabba'; oldp = 'abba'; newp = 'aaaa'; newstr = regexprep(regexprep(oldstr,oldp,newp),oldp,newp);
12 dagar ago | 0
| accepted
Merging strings in a table
L = readtable( fileLog ); L2 = convertvars(mergevars(L,["Var2","Var3"]),"Var2",@(a)join(a," "));
12 dagar ago | 0
Error in for loop (issue with variable calling)
Time{i} is all the times from the file. To get the times of the peaks found by findpeaks, index Time{i} with the peak locations ...
13 dagar ago | 1
| accepted
Index of element to remove exceeds matrix dimensions
Let's examine what happens on the first iteration of that for loop. for i = 1:Np First time through the loop, i is 1. idx...
14 dagar ago | 0
| accepted
a file called avehighs.dat stores for three locations
Instead of looping over months, (for i = 1:12), you can plot all the months for a given location at once, and loop over location...
14 dagar ago | 0
| accepted
Create plot with shaded standard deviation, but ...
data = readmatrix("data.xlsx") % matrix with 3 columns % columns 2 and 3 are shorter, so i ignore NaN values avg_data = mean(...
15 dagar ago | 2
| accepted
How to remove unrecognized function or variable error
<https://www.mathworks.com/help/matlab/matlab_prog/share-data-between-workspaces.html>
15 dagar ago | 0
How I do overlay 2 Matlab fig files?
f1 = openfig('trajectory id_88092.fig'); f2 = openfig('trajectory id_90788.fig'); leg = findall(f2,'Type','legend'); leg.Au...
15 dagar ago | 0
| accepted
Fplot command only displaying a limited range. It displays [0,1] even though the range requested is [0,30].
fplot is sending a vector t to your function, not a scalar t. This causes an error if/when it gets to the first &&, which only h...
15 dagar ago | 1
| accepted
Bar plot of categorical data
histogram seems to work fine: data = randi([0,7],46,1); histogram(data) Maybe you have another function called histogram th...
15 dagar ago | 0
| accepted
calculate the maximum at each point of the grid
PP_temp = [P_1_4, P_1_6, P_1_9, P_2_2, P_6, P_7, P_8, P_9, P_10]; PP_max = max(PP_temp,[],2);
15 dagar ago | 0
| accepted
how to calculate the maximum of a probability array
PP_temp = [P_1_2, P_1_6, P_1_9, P_2_2, P_6, P_7, P_8, P_9, P_10]; PP_max = max(PP_temp,[],2);
15 dagar ago | 0
| accepted
How to reference to a struct field with char array?
name = 'ABA'; idx = 1; TestUnits.A.(name)(idx).Values
15 dagar ago | 1
| accepted
I was using if and Elseif statements. Everytime I input the third option the print for the second option appears.
Adjust your parentheses so that the || conditions are checked together, then the &&: if (p1 == 'P' || p1 == 'p') && (p2 == 'r' ...
15 dagar ago | 0
Pass plot parameters as a vector
x = linspace(0,1,10); % I changed the domain so you can see the lines y(1,:)= exp(x); y(2,:) = log(x); y(3,:) = x.^2; colors...
16 dagar ago | 0
Projectile Motion when y0 does not equal 0
clear all close all clc g= -9.81; % gravitational acceleration angle= 45 *pi/180 ; % angle in radian % v0=2; % initial sp...
18 dagar ago | 0
plot x label like plot(x, y) in boxplot
data = magic(5); x=[1,2,5,10,16]; boxplot(data,x);
18 dagar ago | 1
| accepted
Summing the values inside a while loop
scores = []; ii = 1; while ii <= 10 scores(end+1) = rand(); ii = ii+1; end scores sum(scores)
18 dagar ago | 0
Why is MATLAB not making multiple plots when I specify separate figures?
figure(2) makes Figure 2 the current figure, if it exists, or creates a new figure called Figure 2 if it does not already exist...
19 dagar ago | 0