![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/9671773_1588376826308.png)
Toder
Followers: 0 Following: 0
Estadística
2 Preguntas
11 Respuestas
0 Problemas
10 Soluciones
CLASIFICACIÓN
1.662
of 297.016
REPUTACIÓN
40
CONTRIBUCIONES
2 Preguntas
11 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
5
CLASIFICACIÓN
of 20.419
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
37.137
of 157.725
CONTRIBUCIONES
0 Problemas
10 Soluciones
PUNTUACIÓN
110
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
Matlab on Linux: Failed to load module "canberra-gtk-module"
This is a known bug but shouldn't affect your ability to use Matlab. See https://www.mathworks.com/support/bugreports/details/19...
más de 4 años hace | 1
| aceptada
Averaging Every 5 Elements in a Matrix for Each Column with Nans
For x=[1 2 3 NaN 4], like your short example, you can do this to ignore NaNs in the mean: mean(x(~isnan(x)))
casi 5 años hace | 0
| aceptada
Create a vector with for loop with mathematical operations
To fix your current code, you need to use indices in the for loop. w=[5 4 3 2] for i = w a3(6-i)=[1/(i+i)] b3(6-i) =...
casi 5 años hace | 1
Array indices must be positive integers or logical values MATLAB error
z0(t) is causing the error. t is a vector of decimals, and you cannot use a decimal as an index. Indices must be positive intege...
casi 5 años hace | 0
Question on how to position points on a line
Assuming del is a column vector of the same size as t and is the desired change in x, try this xy1 = [141.64 399.53]...
casi 5 años hace | 0
| aceptada
dbstop doesn't stop if the line at which is supposed to stop is something like `'else'
The if condition is true, so Matlab executes disp('true'); then jumps to end. Lines 4 and 5 are never executed because only one ...
casi 5 años hace | 0
| aceptada
Replace missing time steps in dataset
If data is the vector of your measurements at times x, you can try Y = NaN(size(t)); Y(ismember(t,x)) = data;
casi 5 años hace | 0
Resuelto
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...
casi 5 años hace
Resuelto
Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...
casi 5 años hace
Resuelto
Factorize THIS, buddy
List the prime factors for the input number, in decreasing order. List each factor only once, even if the factorization includes...
casi 5 años hace
Resuelto
Prime factor digits
Consider the following number system. Calculate the prime factorization for each number n, then represent the prime factors in a...
casi 5 años hace
Errors Within an If Statement
For if elsif else conditionals, Matlab executes the statements in the first block who's logical expression true, then it jumps t...
casi 5 años hace | 0
| aceptada
Resuelto
Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...
casi 5 años hace
Resuelto
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
casi 5 años hace
Resuelto
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
casi 5 años hace
Resuelto
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
casi 5 años hace
"Index exceeds the number of array elements (1)."
The way you define your struct in the first few lines results in Air being a 1x1 struct with two fields (temp and press), each o...
casi 5 años hace | 1
| aceptada
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:...
casi 5 años hace
I obtained different figure after using fsurf and surf
It appears you may have a typo in your second definition of bb. Your first call to jacobiSN in this line currently reads as jac...
casi 5 años hace | 0
| aceptada
Pie chart label overlapping
Following the documentation for pie chart labels at https://www.mathworks.com/help/matlab/creating_plots/customize-pie-chart-lab...
casi 5 años hace | 2
Pregunta
Function Argument Validation, Compare to Irrational Number or Expression
Is there a way to use MATLAB's built-in validation functions to compare an argument to an expression or funciton output? I want...
casi 5 años hace | 1 respuesta | 0
1
respuestaPregunta
Exit function early and return output
I have a rather long function with a single output. In a special case, the output can be calculated without executing the majori...
casi 5 años hace | 1 respuesta | 0