Beantwortet Histogram: put mean and std in the legend
I am using R2018b and my understanding is that you want to have:
each line on your plot not named data, but the legend itself h...
etwa 6 Jahre vor | 1
Gelöst
Fill a zeros matrix
The aim is to fill an array of all zeros given a numerical value and the index of row and columns for this value.
3 Inputs:
...
etwa 6 Jahre vor
Gelöst
Replicate elements in vectors
Replicate each element of a row vector (with NaN) a constant number of times.
Examples
n=2, A=[1 2 3] -> [1 1 2 2 3 3]
...
etwa 6 Jahre vor
Gelöst
Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0.
a = 3;
b = [1,2,4];
Returns 0.
a = 3;
b = [1,...
etwa 6 Jahre vor
Gelöst
Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.]
Non-scor...
etwa 6 Jahre vor
Gelöst
Times 2 - START HERE
Try out this test problem first.
Given the variable x as your input, multiply it by two and put the result in y.
Examples:...
Beantwortet generate a unique ID
This has already been asked:
https://nl.mathworks.com/matlabcentral/answers/240447-using-java-uuid-in-matlab#answer_191523
tem...
etwa 6 Jahre vor | 1
Beantwortet how do i get the higher values into the bins
Maybe try using histcounts
Here is a small example:
X = randn(1000,1);
edges = [-5 -4 -2 -1 -0.5 0 0.5 1 2 4 5];
N = his...