Estadística
0 Preguntas
4.546 Respuestas
0 Problemas
1933 Soluciones
CLASIFICACIÓN
17
of 295.410
REPUTACIÓN
14.334
CONTRIBUCIONES
0 Preguntas
4.546 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
1.375
CLASIFICACIÓN
of 20.224
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
41
of 153.822
CONTRIBUCIONES
0 Problemas
1933 Soluciones
PUNTUACIÓN
20.051
NÚMERO DE INSIGNIAS
16
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Attempting to interpolate with interp2 and getting errors about the sample point vector?
% strains is defined on corners (0,0), (1,0), (1,1), (0,1), in that order strains = [1 5; 2 6; 3 7; 4 8] % points to interpo...
1 día hace | 0
| aceptada
How do I merge two structs, where one field in the struct is itself a struct?
Setting up obj like you have (with clear obj at the top so that it doesn't contain anything left over from previous runs): clea...
7 días hace | 0
Why is the Nyquist frequncy on the bode diagrams the same as the sampling frequency?
I assume you're referring to something like this plot. "sampling time of 0.5 seconds (2 Hz, or 6.28 rad/s)" There's the proble...
8 días hace | 0
| aceptada
Change Line width and Line color in findchangepts function.
As I interpret the question, you want to plot the data in different regions with different line properties. If that's the case, ...
8 días hace | 1
| aceptada
I need help creating the snake game in matlab for a personal project.
"Function definitions are not supported in this context. Functions can only be created as local or nested functions in code file...
8 días hace | 1
| aceptada
Index exceeds array bounds at position 3
plot(vsine(begin(FREQ):begin(FREQ)+cycle(FREQ)-1,k),nsd(n,k,i,j)) Indexing nsd is the error, not indexing vsine. (nsd is the on...
9 días hace | 0
| aceptada
Preventing factor oursite matrix when using the disp() function.
See <https://www.mathworks.com/help/matlab/ref/format.html format>.
9 días hace | 0
Segmenting Data around an event
Active = [1 0 0 1 1 1 0 0 1] flashIndex = strfind(Active,[0 1])+1 % index of the 1 at the rising edge If you want to conside...
9 días hace | 0
Hello, i receive this error, i am attempting to plot Td with sample h
h = 0:10; n = 1:6; p1 = 0.4; p2 = 0.6; Perhaps you meant Td = h.'.*((1-p1.^n-p2.*p1.^n))./(p2.*p1.^n) plot(h,Td) Or Td =...
9 días hace | 0
How can I change the color between the two circles?
Change the third argument to the first fill() call. Example: % Parameters for the inner and outer circles radius_inner = 1; ...
13 días hace | 0
| aceptada
Adjust Position of text in a png file created using uicontrol
As explained in the documentation for uicontrol properties, when Units is 'characters', Character width = width of the letter ...
13 días hace | 0
Constructing a string with several index requirements
r2 = [0 30 60 90 120 150 180 210]; command = sprintf('ScanArray(0)(%d)=%g',[0:numel(r2)-1; r2]) The %g is to handle cases wh...
13 días hace | 2
I need to combine two channels of cell arrays into a single matrix for processing. The two channels should be the same size but in some cases not - how can I change the size?
Assuming that channelData is a 2-element cell array, that channelData{1} and channelData{2} are both column vectors, and you wan...
15 días hace | 0
| aceptada
Problem Using Nested For Loops
No loops required: X = [1 2 3 4 5; 6 7 8 9 10; 11 12 13 14 15; 16 17 18 19 20] V = [-10; 20; -10; 20] X = X...
15 días hace | 2
Format printing problem with doubles printing in rows when I am looking for columns.
fprintf prints the values in the order you supply them; in this case that means all elements of radius are printed then all elem...
17 días hace | 0
| aceptada
Re-index a vector based on the indices of another vector
[ism,idx] = ismember(B,A(:,[1 2 3]),'rows'); assert(all(ism)) B_new = [B A(idx,4)];
20 días hace | 0
| aceptada
Zero pad using piecewise.
"I need ... that all values of V that are above 0 are set to 0." V(V > 0) = 0; or V = min(V,0);
21 días hace | 0
| aceptada
Length command giving rise to array indices must be positive integers or logical values error
The code creates a variable called "length" when this line executes: length(1)=Cr_atoms(i,1)+dx*a; % Angstroms Any subsequent ...
21 días hace | 1
readtable produces apparent gibberish when reading csv file
Looks like readtable decides the delimiter for a.csv is '_' (underscore). I don't know why. opts = detectImportOptions('a.csv')...
21 días hace | 1
| aceptada
Use vpasolve to solve iterations of the same function when the number of iterations is N
One way is to define a function that takes F, N, and z as arguments and iterates N times to construct F(F(...F(z)...))-z. Then c...
21 días hace | 0
I am trying to generate code for plotting anti fractals and getting error
Picking z0=c instead of z0=0, correcting the definition of R_base to have 2/theta instead of 2*theta, decreasing the max number ...
22 días hace | 0
| aceptada
I am taking two excel files with similar x value data and want to plot the y values of one of the plots with different colors based on if the second file reads 0 or 1.
warning off all unzip('Data1.zip') unzip('Data2.zip') data1 = readtable('Data1.csv'); data2 = readtable('Data2.csv'); g...
22 días hace | 0
is it possible to mark significance levels using heatmap?
As far as I know, there is no built-in option to conditionally alter the heatmap data labels, but what you can do is create a he...
22 días hace | 2
readmatrix collapses blanks/NaNs, but I want to keep those empty cells
Use 'EmptyLineRule','read' to keep the lines that are all-NaN. Using only that option, all sample files are read correctly: ful...
23 días hace | 0
| aceptada
How to remove some xticklabels (but still keeping all the xticks)?
x = 1:100; y = exp(-0.1*x); plot(x,y) ax = gca; ax.XTick = 0:10:100; ax.XTickLabels(1:4) = {''};
23 días hace | 1
| aceptada
Suppressing braces and single quotes of a string matrix
C = { ... ['V1 = 1.01' char(8736) '0' char(176) ' pu']; ... ['V2 = 0.92675' char(8736) '-5.7691' char(176) ' pu']; ......
27 días hace | 0
Why does pcolor adds a flat lines during a data gap instead of white space?
load FPDO.mat load E_log.mat load T_.mat T_ = T_lepi; The problem is that T_ and E_log are not monotonic: figure subplot(2...
27 días hace | 0
| aceptada
How to plot the continuous linear graph of y(n) + y(n-1) + ... + y(1)
y = [2 -1 1 2 -1 -2 -1 2 3 -2 1]; plot(0:numel(y)-1,cumsum(y),'.-')
27 días hace | 0
| aceptada
How do I convert a symbolic expression to a string?
Here are a couple of options: syms x % the arbitrary expressions phi_1 = x; phi_2 = x^2; % example plot example = [1:1...
28 días hace | 1
Boxplot divided by color with combined labels
I gather that you want to have the boxes filled as in Alternative 1 and the x-ticks and labels as in Alternative 2. See if usin...
29 días hace | 1
| aceptada