Estadística
18 Preguntas
15 Respuestas
CLASIFICACIÓN
1.376
of 295.495
REPUTACIÓN
50
CONTRIBUCIONES
18 Preguntas
15 Respuestas
ACEPTACIÓN DE RESPUESTAS
33.33%
VOTOS RECIBIDOS
10
CLASIFICACIÓN
of 20.240
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 153.991
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
app designer not saving or closing after computer sleep
I found that, everytime my computer goes to sleep (or hibernate) and wakes up again, the app designer that was opened previousl...
casi 3 años hace | 1 respuesta | 0
1
respuestaPregunta
where do I find web server app product?
I started matlab installer 2021b, browsed through all the packages/toolboxes, but couldn't find the Matlab web server app produ...
alrededor de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
"cpselect.m" excluded from packaging
I got this message in "PackagingLog.html" when trying to package an application Excluded "C:/Program Files/MATLAB/R2019b/toolbo...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
enumerate all possible combinations of an input space
for example I have 3 categorical variable, X1 can be 'A,B,or C', X2 can be 'A or D', X3 can be 'E or F', so there can be 3X2X2 d...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
ROI of a ring area?
How do I define an ROI of a ring area, i.e, a big cirle and small cirle inside, and I want to select the area in between. Do I ...
casi 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Overlay multiple images in one axes with individual transparency adjustment?
I have 3 or more images of the same size to be overlaid, each is associated with a sliding bar for transparency (0-1) adjustment...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
find the std of each parameter after lsqlin
I'm using x = lsqlin(C,d,A,b,Aeq,beq,lb,ub) to Solve a constrained linear least-squares problem. After that, how do I find the ...
más de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Overlay two images in one axes?
I have two images of the same object, but with different resolutions (and sizes). I want to show the high resolution image in...
casi 5 años hace | 2 respuestas | 0
2
respuestasI have 10 rows and four columns in variable two. I want to write one row in one cell, 2nd row in 2nd cell, 3rd row in 3rd cell and so on into an Excel file using Matlab. How can I do this?
use num2str() to convert your 10X4 numeric matrix into 10 strings. Then use xlswrite() to write string into Excel cells. Here'...
alrededor de 5 años hace | 0
| aceptada
How to add constraint with condtions using fmincon?
Ask yourself 3 question: How many vairable? how many constraints? and then how to write A and b. Now you are saying L is a know...
alrededor de 5 años hace | 1
How to add constraint with condtions using fmincon?
Your constraint could be written as: x-y < 1/(a<b)-1 when a<b, a<b=1, so, 1/(a<b)-1=0 when a>=b, a<b=0, so, 1/(a<b)-1=Inf, i...
alrededor de 5 años hace | 1
| aceptada
Pregunta
Error using function "drawassisted"
I copy and paste the example code below and got errors when testing drawassisted. Any ideas? im = imread('peppers.png'); im...
alrededor de 5 años hace | 0 respuestas | 0
0
respuestasPregunta
How to add uibuttongroup to a toolbar
I want to add 3 toggle buttons to the toolbar. They are exclusive, i.e., only one of them should be pressed. It is easy to cre...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaSort a structure by the date field
It's easier to handle it in table: T=struct2table(examplestruct); sort(T.date)
alrededor de 5 años hace | 0
how to write series of multiple non-linear constraints for optimization using fmincon in MATLAB?
You have 2n parameters, named X1,X2...Xn(for phi) and Xn+1...X2n (for tau). You need to write the constraints in the vectorized...
alrededor de 5 años hace | 0
| aceptada
Assigning Cell Arrays to Nested Structures within Structure array with Same Dimensions (Error: "Scalar structure required for this assignment")
I don't know how your struct is initialized. It should work. %initialize outputOfCefllfun{1,1}=magic(5); outputOfCefllfun{...
alrededor de 5 años hace | 0
Generating an unknown ammount of Buttons in App Designer
You need to remove the line: UniButton = zeros(length(allKeys)); In the callback function, you can retreive source.Text ...
alrededor de 5 años hace | 1
| aceptada
How to append elements into a 2D cell array
Don't use "end", because it keeps getting larger when you append. Need to reset it in between the two loops. try below .........
más de 5 años hace | 0
| aceptada
Pregunta
How to add a scale bar on an image that will changes automatically with zoom in/out
Given an microscopy image, I want to add a scale bar on the bottom left or right corner of the image. This is not hard to do. ...
más de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
how to fetch splite3 blob data
sqlite() and fetch() function only works for one of these data types: double, int64, or char, But not for blob binary data chunk...
más de 5 años hace | 1 respuesta | 0
1
respuestaHow to read multiple excel files with different names
you can use this commend to select multiple files from the same folder.. [files,path]=uigetfile('*.xlsx','multiselect','on') a...
casi 6 años hace | 1
Pregunta
datastore for large structured data
There are Datastores for tabular text files, spreadsheet files, image files, etc. What if my data is a very large binary file, ...
casi 6 años hace | 1 respuesta | 0
1
respuestaPregunta
zoom tools in an image in GUI axes
I want to show an image in an gui axes and enable the zoom in(out) functionalities of the image using the mouse, display the (X,...
casi 6 años hace | 1 respuesta | 0
1
respuestaPregunta
complied standalone app failed to include toolbox functions
I made a gui, running perfectly in matlab enviorment v2017a. Then I complied it into a standalone application. But it failed t...
casi 7 años hace | 1 respuesta | 0
1
respuestaPregunta
Question about the CVmodels generated from regression learner app in machine learning toolbox?
In the regression learner, one can choose the "cross validation" option (i.e., 5 fold) to generate a model and use that model to...
más de 7 años hace | 1 respuesta | 0
1
respuestahow do i rename or remove a sheet from an excel spreadsheet using matlab
https://www.mathworks.com/matlabcentral/answers/215703-changing-the-name-of-the-sheet-in-excel
más de 7 años hace | 0
How to find occurrences of a vector of strings in a cell string.
cs=[{'A1'},{'A2'},{'A3'},{'B1'},{'B8'}]; X=[{'A1'},{'B8'}]; find(ismember(cs,X)); ans: 1 5
más de 7 años hace | 0
| aceptada
How to use data from base workspace in app designer application
initialize your EditFields using evalin(), such as: app.EditField1.Value=evalin('base','myvar1'); app.EditField2.Value=evalin(...
más de 7 años hace | 3
| aceptada
Pregunta
How to change the color of "partial" text in gui static text
For example, I want to display a string of 'ABCDE' in the static text box, and want to highlight C with red color or bold font. ...
más de 7 años hace | 1 respuesta | 0
1
respuestaCalculus Matlab two variables
Try this, using fmincon(), to solve the min problem x0=[1,1]; Aeq=[8,3]; beq=24; lb=[1,1]; ub=[4,10]; fun=@(x)4+x(1)+x...
más de 7 años hace | 1