Estadística
0 Preguntas
15 Respuestas
0 Problemas
1 Solución
CLASIFICACIÓN
2.139
of 301.754
REPUTACIÓN
30
CONTRIBUCIONES
0 Preguntas
15 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
5
CLASIFICACIÓN
of 21.410
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
127.506
of 176.414
CONTRIBUCIONES
0 Problemas
1 Solución
PUNTUACIÓN
20
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
How to execute a function when stored in a variable
I hope eval, feval documentaion migh come handy. Did not exactly get the question.
casi 5 años hace | 0
How to draw the tangent line on a curve
This answer might be useful.
casi 5 años hace | 1
Average matrix values across diagonal
Hey, I think this is what you require. This basically takes a mean over the diagonally opposite numbers, to create a symmetrical...
casi 5 años hace | 0
Storing calculated values from a for-loop and plotting.
Hey You can refer to the plotting documentation. Considering you needed a z vs r graph, heres the code and the plot. Hope this h...
casi 5 años hace | 0
| aceptada
X^n calculation
%Number is the base number number = 5; ans = 1; % n is the power to which the number needs to be raised n = 3; while(n~=0...
alrededor de 5 años hace | 0
Finding Digits of a Number
This code basically keeps dividing the number by 10, and uses the remainder as the digit, while the quotient as the new number. ...
alrededor de 5 años hace | 0
Resuelto
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:...
alrededor de 5 años hace
Array creation with condition from another array
You can do this by mapping 2 consecutive indices to one index, ie. {1, 2} to 1, {3,4} to 2 and so on.. The following code should...
alrededor de 5 años hace | 1
| aceptada
how to find index of the double
In my understanding you are trying to find an index of a particular value in double. You can use the find function. You can know...
alrededor de 5 años hace | 0
sinh(ax) plot
You can look at the plotting documentation to know more. Heres a simple example. x = 0:pi/100:2*pi; % a = 2 y = sinh(2*x); ...
alrededor de 5 años hace | 0
Make several tables from one table
You can extract rows from a table uising row indexing. You can have a look at the "Index Using Numeric Indices" section in the d...
alrededor de 5 años hace | 1
The find function does not find the attribute element and outputs an empty row vector. What's the reason?
To find a noninteger value using the find function, it is recommended to use a tolerance value based on your data. Otherwise, th...
alrededor de 5 años hace | 0
| aceptada
How to convert Simulink model to MATLAB script ?
In my understanding, you are trying to edit and run your simulink model programatically from matlab. The following documentation...
alrededor de 5 años hace | 0
Plotting the same signal with a different scanning
If I understood correctly, you are trying to plot 2 signals in a single graph. This documentation should be helpful. You can plo...
alrededor de 5 años hace | 0
How do I convert this string to a date ?
Since you are trying to convert strings to date with literals like 'T' and 'Z', you may want to look at the "Date and Time from ...
alrededor de 5 años hace | 2
My piecewise function graph is not showing
It is my understanding that you need to visualize the function you have provided as text, ie The code that you have provi...
alrededor de 5 años hace | 0
| aceptada


