Net Fre
Followers: 0 Following: 0
Estadística
4 Preguntas
8 Respuestas
CLASIFICACIÓN
2.816
of 295.448
REPUTACIÓN
20
CONTRIBUCIONES
4 Preguntas
8 Respuestas
ACEPTACIÓN DE RESPUESTAS
25.0%
VOTOS RECIBIDOS
2
CLASIFICACIÓN
of 20.227
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 153.872
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
Generate Code for classes methods
Hi. This is more of a clarification question than a "how to", because I got the MATLAB answer and it works, but I have a questi...
5 meses hace | 1 respuesta | 0
1
respuestaPregunta
unable to generate code with 'collisionMesh' function.
Hi. I am trying to create a .mex file using the coder app. The function I am trying to convert uses the collisionMesh and chec...
5 meses hace | 1 respuesta | 0
1
respuestaPregunta
MATLAB runtime with multiple versions on computer.
Hi! I am trying to export an application made with the app designer in R2020b to a standalone application, that people without ...
casi 2 años hace | 1 respuesta | 0
1
respuestaUnstable Closed Loop Poles
Using the rlocus function, you can see that up to a certain value of C (around 0.4 in your case) your closed loop will still be ...
casi 3 años hace | 0
How can I update the constant block parameters from the text/csv data file based on the amplitude of the input signal?
Seems like a classic case for a lookup table. There's also a video about it: https://www.youtube.com/watch?v=HmfwKoFHrO4
casi 3 años hace | 0
Write a function called rand_test
You can use reshape for that: function [m v] = rand_test(n) m = rand(n^2,1) v = reshape(m,[n,n]) end
casi 3 años hace | 1
| aceptada
similarity between closely related signals
You can create a vector calculating the difference between the two, and then find the first index where it is larger than a spec...
casi 3 años hace | 0
| aceptada
How to export .mat file to excel different sheets
In the function xlswrite you can specify the sheet you want to write into: xlswrite(filename,A,sheet) Then you can loop over t...
casi 3 años hace | 1
How to add a legend to a plot from fitlm function?
Notice that using the fitlm function creates an object called 'LinearModel' containing the data you need (and much more). You c...
casi 3 años hace | 0
| aceptada
cut of zeros from a matrix based on the longest non-zero row
Hi You can use the cumprod function. your code line can look like this: % a = some matrix idx = max(sum(cumprod(a~=0,2)),2) ...
casi 3 años hace | 0
Function with for loop to calculate power mean
When you build a function, it expects you to do something with the parameters you assigned for it. In this case, the parameter ...
alrededor de 3 años hace | 0
| aceptada
Pregunta
Make persistant changes in executable app by user
Hi! I am creating a stand-alone application which gets an excel sheet uploaded, and displays data based on it. Thing is, a spe...
alrededor de 3 años hace | 2 respuestas | 0