統計
All
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...
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日 前 | 0
| 採用済み
回答済み
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...
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日 前 | 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...
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日 前 | 0
| 採用済み
回答済み
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, ...
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日 前 | 1
| 採用済み
回答済み
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...
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日 前 | 1
| 採用済み
回答済み
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...
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日 前 | 0
| 採用済み
回答済み
Preventing factor oursite matrix when using the disp() function.
See <https://www.mathworks.com/help/matlab/ref/format.html format>.
Preventing factor oursite matrix when using the disp() function.
See <https://www.mathworks.com/help/matlab/ref/format.html format>.
9日 前 | 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...
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日 前 | 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 =...
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日 前 | 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; ...
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日 前 | 0
| 採用済み
回答済み
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 ...
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日 前 | 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...
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日 前 | 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...
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日 前 | 0
| 採用済み
回答済み
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...
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日 前 | 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...
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日 前 | 0
| 採用済み
回答済み
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)];
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日 前 | 0
| 採用済み
回答済み
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);
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日 前 | 0
| 採用済み
回答済み
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 ...
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日 前 | 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')...
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日 前 | 1
| 採用済み
回答済み
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...
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日 前 | 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 ...
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日 前 | 0
| 採用済み
回答済み
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...
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日 前 | 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...
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日 前 | 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...
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日 前 | 0
| 採用済み
回答済み
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) = {''};
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日 前 | 1
| 採用済み
回答済み
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']; ......
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日 前 | 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...
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日 前 | 0
| 採用済み
回答済み
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),'.-')
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日 前 | 0
| 採用済み
回答済み
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...
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日 前 | 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...
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日 前 | 1
| 採用済み