Estadística
CLASIFICACIÓN
1.828
of 295.638
REPUTACIÓN
36
CONTRIBUCIONES
1 Pregunta
14 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.0%
VOTOS RECIBIDOS
8
CLASIFICACIÓN
315 of 20.255
REPUTACIÓN
4.800
EVALUACIÓN MEDIA
4.30
CONTRIBUCIONES
38 Archivos
DESCARGAS
171
ALL TIME DESCARGAS
43626
CLASIFICACIÓN
885
of 154.207
CONTRIBUCIONES
6 Problemas
206 Soluciones
PUNTUACIÓN
2.303
NÚMERO DE INSIGNIAS
7
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Randomly select a number from a column of a stored matrix, stores the respective row
You can use randi to randomly generate the index you need, rowInd = randi(256,1); then use that index to pull out the row from...
más de 3 años hace | 1
| aceptada
Plot x^2+y^2=4
There are a few ways to go about this. One that is somewhat agnostic to what the equation is trying to represent (in this case, ...
casi 5 años hace | 1
| aceptada
select random number from an array with probabilities
You can query the cumulative probabilities: S = [4, 3.9, 3.8]; w = [0.5, 0.4, 0.1]; w = w/sum(w); % Make sure probabilites ad...
casi 5 años hace | 1
get the x-value of a point on curve
This is a table lookup / interpolation problem. For your data, you'll first have to make sure there aren't any repeated y values...
casi 5 años hace | 5
how do i open a browser in matlab ?
Use uigetfile: https://www.mathworks.com/help/matlab/ref/uigetfile.html Or if you have the toolbox, help uigetimagefile
casi 5 años hace | 0
Size of a figure that I copy from Matlab to Powerpoint
I find that MS products sometimes have behavior as though they're taking a guess at what the pasted figure size should be. I fin...
casi 5 años hace | 0
How can I create a 3D plot of data with dots of different color?
Use a scatter plot and CData: n = 100; xData = 1:n; % Placeholder - I assume you have additional information about the data to...
casi 5 años hace | 0
How to create an object using class name
A quick and dirty approach that will work in many cases is to use eval: function new = createNewObjectOfThisClass(original) ne...
casi 5 años hace | 0
Converting a row to diagonal matrix
Another guess at the intended meaning of the question could be that the values should be filled along the diagonals (instead of ...
casi 5 años hace | 0
Pregunta
What method do I overload to control display behavior in the workspace window?
When using a subclass of double (for example the ExtendDouble class from the <https://www.mathworks.com/help/matlab/matlab_oop/b...
alrededor de 7 años hace | 0 respuestas | 0
0
respuestasX Y Z coordinates matrix
You can use the |cat| command to 'stack' your three 2d matrices into a single 3d matrix: M = cat(3,x,y,z); This will giv...
alrededor de 7 años hace | 0
| aceptada
Generate Random numbers from a 2 D probability density function
Conceptually, you can generate random numbers for any arbitrary distributions by # Converting the pdf to a cdf. # Generating...
alrededor de 7 años hace | 0
How to create an Object insertable in a 3D plot?
One approach could be to leverage the plotted object's XData, YData, and ZData, homogeneous coordinates, and the |makehgtform| f...
más de 7 años hace | 0
Reaching the element of an array passed to a function
The first step needs to be to find the indices of the array that correspond to the conditional statement. You can use something ...
más de 7 años hace | 0
| aceptada
How do i fit my data with two functions and a knot between them
The |tanh| function can be handy for creating a one-liner piece-wise function for feeding into a curve fitting tool. If you don'...
casi 8 años hace | 0
| aceptada