Statistics
RANK
24
of 276.181
REPUTAZIONE
8.974
CONTRIBUTI
0 Domande
2.923 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
806
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
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...
12 giorni fa | 1
| accettato
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...
12 giorni fa | 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...
13 giorni fa | 1
App designer Edit field, position
pos1 = "[1 2 3 4]"; pos = str2num(pos1)
13 giorni fa | 0
| accettato
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...
13 giorni fa | 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...
13 giorni fa | 0
| accettato
I want to use fprintf to make a table of results
fprintf(' %6.3f %6.3f\n', [standard, average].')
14 giorni fa | 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...
14 giorni fa | 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, ...
14 giorni fa | 0
| accettato
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...
14 giorni fa | 0
| accettato
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);
14 giorni fa | 0
| accettato
Merging strings in a table
L = readtable( fileLog ); L2 = convertvars(mergevars(L,["Var2","Var3"]),"Var2",@(a)join(a," "));
14 giorni fa | 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 ...
15 giorni fa | 1
| accettato
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...
16 giorni fa | 0
| accettato
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...
16 giorni fa | 0
| accettato
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(...
17 giorni fa | 2
| accettato
How to remove unrecognized function or variable error
<https://www.mathworks.com/help/matlab/matlab_prog/share-data-between-workspaces.html>
17 giorni fa | 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...
17 giorni fa | 0
| accettato
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...
17 giorni fa | 1
| accettato
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...
17 giorni fa | 0
| accettato
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);
17 giorni fa | 0
| accettato
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);
17 giorni fa | 0
| accettato
How to reference to a struct field with char array?
name = 'ABA'; idx = 1; TestUnits.A.(name)(idx).Values
17 giorni fa | 1
| accettato
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' ...
17 giorni fa | 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...
18 giorni fa | 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...
20 giorni fa | 0
plot x label like plot(x, y) in boxplot
data = magic(5); x=[1,2,5,10,16]; boxplot(data,x);
20 giorni fa | 1
| accettato
Summing the values inside a while loop
scores = []; ii = 1; while ii <= 10 scores(end+1) = rand(); ii = ii+1; end scores sum(scores)
20 giorni fa | 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...
21 giorni fa | 0