已回答
Prevent Windows Update from shutting down Matlab session
When you say "stop my simulations from shutting down", do you mean "Have MATLAB pause the Windows update?" As a Mac user, I don...

9 months 前 | 0

已回答
how aggregate duraration and sum it in timetable
Here is one way: load("matlab_tt2") TT2.timeOfDay = timeofday(TT2.datt); equalDurationSum = groupsummary(TT2,"timeOfDay",...

9 months 前 | 0

| 已接受

已回答
how to remove variables of a table with a zeros in it
% Example data x = ["a";"b";"c"]; y = [4;5;6]; z = [0;7;8]; tbl = table(x,y,z); % Find variables with a zero hasZero = a...

9 months 前 | 0

| 已接受

已回答
Plotting error bars on grouped bar
You need the XEndPonits property of the bars. % Sample data data = [1.5, 2.3, 3.2; 2.0, 2.8, 3.5; 1.8, 2.5, 3.0]; errors = [0...

9 months 前 | 1

| 已接受

已回答
fitPosterior warning: Why does fitPosterior output a warning when the transformation is a step function?
I would say that a warning could be warranted because perfect separability could be an indication of over-fitting, and that the ...

9 months 前 | 0

| 已接受

已回答
i need to plus all numbers in my Array of 3x3 then divide that number by its area using save ,for loop, function
You can sum all the elements of an array using the sum function. For example A = magic(3) S = sum(A,"all") You can save to fi...

9 months 前 | 0

已回答
How can I make x and y axis dates with contour?
That limitation is a shame. One awkward solution is to convert the datetime values to datenums (which are purely numeric), and ...

9 months 前 | 0

| 已接受

已回答
using PCA to filter outliers in MATLAB
There is a built-in MATLAB function, rmoutliers, for detecting and removing outliers. I frankly did not read all your code, but...

9 months 前 | 1

已回答
Detection of storms from precipitation data
I think this does what you want. It is easy to make minor indexing mistakes, so you should double-check: % Load data load("VE_...

9 months 前 | 0

已回答
How to calculate Bootstrap confidence interval
As you may have noticed already, the data have a huge variance around that fit: x = [6 10 14 20 26 34 38]'; y = [122 107 119 1...

9 months 前 | 0

| 已接受

已回答
don't understand output of fitlme, intercept substituted for first line.
The output is not substituting 'Intercept' for a level of your coefficient. It looks like your variable voc_registers is catego...

9 months 前 | 0

| 已接受

已回答
Does the curvefit toolbox return the equation for the best fit line (or curve)?
Yes, you can get the coefficients of the best-fit equation. @Torsten's comment illustrates where you can see them in the UI, and...

9 months 前 | 0

| 已接受

已回答
what is the best way to learn deep learning for medical imaging?
If you are talking specifically about using MATLAB, then I suggest you start with the Deep Learning Tutorials and Examples with ...

9 months 前 | 0

| 已接受

已回答
anyone can help me explain the meaning of the following code?
I ran your code here. It seems pretty obvious what it does, right? You might want to do the free online MATLAB Onramp tutorial,...

10 months 前 | 0

| 已接受

已回答
Set scale of boxplots
% Make some pretend data rng default x = 1.e-5*rand(1000,16); % Boxplot boxplot(x) % Fix the y-axis scale ylim([0 1.e-...

10 months 前 | 0

| 已接受

已回答
matrix, where each element is a column vector
ETATT=cell(11,7); % initial matrix Etat=zeros(1001,1); % column vector, contained in each element of the ETATT matrix % Fill...

10 months 前 | 0

已回答
How to apply individual color to each bar on a bar chart plot
The documentation for the bar command has a section on how to control individual bar colors.

10 months 前 | 1

已回答
Why does my fit to a PDF generated using a histogram not add up to 1 or give me correct expected value?
I can't run your code to completion, because fofaveless is not defined, so I can't calculate the variable continuous. But, it l...

10 months 前 | 0

已回答
How to spline 163 data points into 100 data points?
I expect you want to use the spline method in the interp1 function. It may be possible to give more specific help if you upload ...

10 months 前 | 0

已回答
1-Way Repeated ANOVA
I don't have any experience with this type of modeling, but it looks like you should be able to use fitrm followed by ranova on ...

10 months 前 | 0

已回答
How to cycle through elements in an array in Matlab
You can utilize the same idea. Just offset by one inside outside mod(): A = [2 3 5 7]; % Illustrate the mod() cycle with off...

10 months 前 | 2

| 已接受

已回答
Why does this code give error?
It's because randi(1,Nb) generates an Nb*Nb array. You need randi(1,Nb,1) as below clear;clc; fc = 3e8; Nb = 1000; %% ...

10 months 前 | 0

| 已接受

已回答
plot legend shows wrong linespec
The syntax you are using created a plot with 402 "lines". The first 401 are red, and the last one is blue. load('data') % I di...

10 months 前 | 1

已回答
want to use output matrix obtained for every iteration of a for loop in another for loop.
Here are two possibilities: % Save into cell arrays nsmall = 4; mcell = cell(nsmall,1); for k = 1:nsmall mcell{k} = ran...

10 months 前 | 0

| 已接受

已回答
How to add a cumulative constant to all values on each row of a matrix, starting from the bottom row and ending at the top row?
There are many ways to do this. Here is one way: % Inputs in = [1 2 3; 1 2 3; 1 2 3]; constant = 0.5; % Algo...

10 months 前 | 1

| 已接受

提问


Score transform for RUSBoost in fitcensemble
The documentation for the predict function of fitcensemble lists the score transforms (to convert scores to probabilities) for t...

10 months 前 | 1 个回答 | 0

1

个回答

已回答
How to fix "Error using /, Matrix dimensions must agree"
Take a look at the documentation on Array vs. Matrix Operations. I used element-wise division (using ./ rather than /) in your ...

10 months 前 | 0

| 已接受

已回答
How to run logistic regression with state variables?
When you specified the model as modelspec1 = 'DefaultFlag ~ Dist_to_DFLT*CreditStateCategory - Dist_to_DFLT:CreditStateCategory...

10 months 前 | 0

| 已接受

已回答
How to fix matrix dimensions
In this expression Q/pi*sigmaz*sigmay*u only pi is going to be in the denominator. Since your expression bears some resemblan...

10 months 前 | 0

| 已接受

已回答
Building an array of strings that might be empty
If the fields are empty strings, your first syntax will not concatenate them. It will make them into a string array: app.XminEd...

10 months 前 | 0

加载更多