Pal Szabo
Followers: 0 Following: 0
Natural Sciences BA, Cambridge, UK, 2016-2019
Estadística
9 Preguntas
5 Respuestas
CLASIFICACIÓN
4.247
of 295.467
REPUTACIÓN
12
CONTRIBUCIONES
9 Preguntas
5 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.234
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
How can a preserve hyperlinks on figures when saving them for use outside of matlab?
I want to add some hyperlinks to some of the datapoints on my figures. <https://uk.mathworks.com/matlabcentral/profile/authors/...
alrededor de 7 años hace | 1 respuesta | 0
1
respuestaPregunta
How can I get the position of a datapoint on a plot?
I have the following code: x=[1:1:5] a=rand*10 y=[2,a,3,5,4] set(gcf, 'Units', 'Normalized', 'OuterPosition', [0 ...
alrededor de 7 años hace | 1 respuesta | 0
1
respuestaPregunta
How can I make figure title and annotations selectable?
I have a figures which contains annotations with hyperlinks to other figures. I want the viewer of the figure to be able to just...
alrededor de 7 años hace | 1 respuesta | 0
1
respuestaHelp with a piece of code
array3 is an integer. Sprintf needs to no that it is in decimal point notation, that's why you need the %d. More info: <https://...
alrededor de 7 años hace | 0
| aceptada
Pregunta
How to use shell commands including variables from matlab?
I have N files, file1 file2 file3, ... fileN. I know that !rm file1 removes file1. How can I create a loop, whic...
alrededor de 7 años hace | 1 respuesta | 0
1
respuestaPregunta
Can I directly upload matlab output to github repistory?
I produce outputs which I do not need to have on my computer, but I would like them to be uploaded to GitHub. How can I save my ...
alrededor de 7 años hace | 1 respuesta | 0
1
respuestaHow to pick five data points equally above and below ( five above and five below)
I believe this works: data = [1.2;3.5;4.7;4.9;5.9;6.3;7.9;8.0;10.0;10.5;11.8] givenpoint = 5.9 data_less_than_givenp...
alrededor de 7 años hace | 0
| aceptada
Integration producd NaN as answer
I think you should delete the >=0 parts from line 8. Like this: y = Integration(2) function y = Integration(t) %Input a ...
alrededor de 7 años hace | 0
random number generation to add and subtract
Try this, it works for me. % invoke myfunction [firstnum secondnum thirdnum fourthnum]=myfunction % if the fourth numb...
alrededor de 7 años hace | 0
| aceptada
Search string for special characters
Can't you use strrep? You can replace the special characters with something which works. https://uk.mathworks.com/help/matlab/r...
alrededor de 7 años hace | 0
Pregunta
How can I make a line be ignored by importdata?
I have a txt file as input. It has a few lines which I don't want to use in my script. Is there anything I can do with the input...
alrededor de 7 años hace | 1 respuesta | 0
1
respuestaPregunta
Nested function not assigning value to global variable
My main script invites a subfunction, which then invites different subfunctions. I want these subfunctions to modify global vari...
alrededor de 7 años hace | 2 respuestas | 0
2
respuestasPregunta
How can I open the same program twice in matlab editor?
This would make editing much easier sometimes.
alrededor de 7 años hace | 1 respuesta | 0
1
respuestaPregunta
Subfunction with output varargout returns only first element of cell array. Why?
This is my script: a=9; b=2; [varargout] = myfunc(a,b) c=varargout function [varargout] = myfunc(a,b) sum=...
alrededor de 7 años hace | 1 respuesta | 0