![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/19188589_1597331944131_DEF.jpg)
Théophane Dimier
Followers: 0 Following: 0
Estadística
2 Preguntas
11 Respuestas
CLASIFICACIÓN
2.853
of 297.016
REPUTACIÓN
20
CONTRIBUCIONES
2 Preguntas
11 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.0%
VOTOS RECIBIDOS
2
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
of 157.725
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
Property visibility behaves as hidden when using breakpoints and "property acces list"
Dear Matlab Community, I am currently working on a project using classes for which I need to restrict the accessibility of cert...
casi 2 años hace | 1 respuesta | 0
1
respuestaPregunta
Conversion from GPIB to visadev : BusManagementStatus
Dear Matlab community, I was using the "traditional" gpib interface (see https://ch.mathworks.com/help/instrument/gpib.html) to...
casi 2 años hace | 1 respuesta | 0
1
respuestaerror with sqrt in Matlab
Hi, sqrt does not accept int64 as input. If you want to round the quantity first, use round, ceil or floor functions instead
alrededor de 4 años hace | 0
How to plot Pareto Front for 03 Objective Functions ?
Hi! Using delaunay triangulation and trisurf plots the 3d surface DT=delaunay(M(:,1),M(:,2)); trisurf(DT,M(:,1),M(:,2),M(:,...
alrededor de 4 años hace | 0
Array indices must be positive integers or logical values.
you may have forgot a multipkliication sign: y2=0.5*exp(-a*(x2-(0.5*o^2*a)))*(1+erf((x2-o^2*a)/sqrt(2)*o)); ...
alrededor de 4 años hace | 1
change in histogram distributions
Hi! It should be doing the following (considering that a is your input) [counts,center]=hist(a); bar(center,counts); hold on...
alrededor de 4 años hace | 0
| aceptada
How to get the sum of the Mean absolute amplitudes of a signal ?
Try sqrt(mean(a.^2)), it should work in a simpler way.
alrededor de 4 años hace | 0
| aceptada
writetable() does not close file after writing
Using an actxserver (see here ) instead of Matlab built-in function would give you complete control on which file is open or not...
alrededor de 4 años hace | 0
rewriting .xlsx template to new file
Hello! If you want to keep the formatting unchanged, consider using an actxserver (see here) onto Excel. Then you can access a...
alrededor de 4 años hace | 0
How to get the sum of the Mean absolute amplitudes of a signal ?
Hi! Have you tried: y=mean(abs(A)); ?
alrededor de 4 años hace | 0
Index exceeds the number of array elements (1) Issue
Have you checked if Nx1 is not already existing before the for loop? It might be that it already exists and that it is a scalar....
alrededor de 4 años hace | 0
Why does my method doesn't recognise the variable U that I defined as global?
you need to redeclare "global U" at the beginning your 3rd function, to create a variable "U" in that functions's workspace and...
alrededor de 4 años hace | 1
plot surface using different x,y vector increment and got different graph
Hi In your formula, there is an operation that is not element wise: z1=-1.448-0.477*x1-0.4757*y1+0.1473*x1.^2-0.1952*x1*y1+0.1...
alrededor de 4 años hace | 0
| aceptada