TastyPastry
Followers: 0 Following: 0
Estadística
12 Preguntas
89 Respuestas
0 Problemas
50 Soluciones
CLASIFICACIÓN
501
of 295.448
REPUTACIÓN
154
CONTRIBUCIONES
12 Preguntas
89 Respuestas
ACEPTACIÓN DE RESPUESTAS
83.33%
VOTOS RECIBIDOS
21
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
10.184
of 153.872
CONTRIBUCIONES
0 Problemas
50 Soluciones
PUNTUACIÓN
510
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
Programmatically performing "Expand axes to fill figure"?
You can grab the axes handle with something like h = axes; Now, when you finish plotting on the axes with the handle h, ...
más de 7 años hace | 1
Resuelto
Pattern matching
Given a matrix, m-by-n, find all the rows that have the same "increase, decrease, or stay same" pattern going across the columns...
casi 8 años hace
Resuelto
Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...
alrededor de 8 años hace
Pregunta
How to extend a row vector down in increasing values?
Say I have the vector a = [4 5 6]; How can I make the vector into [4 5 6 5 6 7 6 7 8 7 8 9 ...] ...
alrededor de 8 años hace | 1 respuesta | 0
1
respuestaInstalling MATLAB 2016a creates blue screen and stops Windows from booting
That error usually is caused by faulty RAM. Have you tried running memtest86? You should try it with one stick of RAM at a time....
más de 8 años hace | 0
Pregunta
Cannot print a figure using print()
Currently using the lines set(fig,'paperpositionmode','manual'); set(fig,'paperorientation','landscape'); set(fig,'pa...
más de 8 años hace | 1 respuesta | 0
1
respuestaHow to read a text file and split up into several text files saving with name successively.?
Well if you know your data has exactly the same number of points per experiment or you can obtain how many points there are per ...
más de 8 años hace | 0
Pregunta
Is there a way to extract specific fields from a structure?
I have a 1x1 structure with a large number of fields of which I'd like to extract some subset. I don't want to have to use ...
más de 8 años hace | 3 respuestas | 0
3
respuestashow can I sort the arrays according to example I explained below?
[Result,ind] = sort(Result); CoEff = CoEff(ind,:); Result = Result';
más de 8 años hace | 1
How to store info to 'handles' in a local function in GUIDE?
Try changing the single input call of guidata() to handles = guidata(hObject);
más de 8 años hace | 0
load txt as structure
Let's say your input line is stored in data: in = strsplit(data); st=struct(in{1},in{2},in{3},in{4},in{5},in{6});
más de 8 años hace | 0
How to create a checker box image of white and black pixels without using inbuilt function?
myIm = uint8(zeros(rows,cols)); myIm = cat(3,myIm+255,myIm,myIm); imshow(myIm);
más de 8 años hace | 0
Resuelto
Is this triangle right-angled?
Given three positive numbers a, b, c, where c is the largest number, return *true* if the triangle with sides a, b and c is righ...
más de 8 años hace
Plot in a figure of a gui and simultaneously open a new figure
You can switch the focus between an axes and figure by calling them with an output, the figure handle, and using the axes() and ...
más de 8 años hace | 0
reading data with loop
Your for loop declaration is wrong. Needs to be: i=1:129 Try using textscan(), which can take in a file and a format and...
más de 8 años hace | 0
I am new to Matlab and i am searching for the correct code to make a plot push button into GUI after loading data from a file (another push button) .The plot i wanna do is the following but i stuck in callback functions etc
So you need two callback functions in order to do this. The first callback will load your data and the second will plot your dat...
más de 8 años hace | 0
How to apply fprinf for matrix
fh = fopen('newFile.txt','w'); for i=1:size(myData,1) fprintf(fh,'%d %d %d\n',a(i,1),a(i,2),a(i,3)) end
más de 8 años hace | 2
Pregunta
Can I dynamically change a structure name
I have a function which takes in multiple .mat files, reads part of them and consolidates them into a cell array. Currently m...
más de 8 años hace | 1 respuesta | 0
1
respuestaFastest Way of Opening and Reading .csv Files (Currently using xlsread)
There's a function csvread() which only works on numeric data. The other way you can do it is to use textscan(). Both of thos...
más de 8 años hace | 0
Resuelto
Which doors are open?
There are n doors in an alley. Initially they are all shut. You have been tasked to go down the alley n times, and open/shut the...
más de 8 años hace
Resuelto
Quote Doubler
Given a string s1, find all occurrences of the single quote character and replace them with two occurrences of the single quote ...
más de 8 años hace
Trouble displaying uicontrol text when it's a decimal
When I run your code, the number doesn't show up. This is because your uicontrol() textbox isn't wide enough. I change the 'posi...
casi 9 años hace | 1
| aceptada
Why does Matlab use 'log' instead of 'ln'?
I mean conversely, you could argue why do we use ln() when log() without a specified base could be used as the natural log. Ther...
casi 9 años hace | 0
How to plot using semilogy
<http://www.mathworks.com/help/matlab/ref/semilogy.html The documentation on the function provides the information you're lookin...
casi 9 años hace | 0
How to delete data from GUI uitable with a push button?
Set a pushbutton callback to edit the data in a uitable. You'll need a way to access the handles of the figure your uitable is c...
casi 9 años hace | 0
| aceptada
How can i set dynamic axis limits in GUI?
Make sure wert_x is greater than 0, get rid of the single quotes around the vector. The 'xlim' property of an axes is a numeric ...
casi 9 años hace | 0
Radio Buttons in a listdlg?
From how I understand the predefined user input GUIs in Matlab, it's difficult, if not impossible to change them. However, they'...
alrededor de 9 años hace | 0
Adding clock in GUI?
You can do something like this: t = datestr(datetime('now','TimeZone','local','Format','d-MMM-y HH:mm:ss Z')); This will...
alrededor de 9 años hace | 0
how to make a table from matrix data?
Your data needs to be inputted as columns. Create variables "Monday", "Tuesday" and "Wednesday" and assign them their data. T...
alrededor de 9 años hace | 0