photo

Catalytic


Last seen: 4 días hace Con actividad desde 2019

Followers: 0   Following: 0

Estadística

MATLAB Answers

9 Preguntas
209 Respuestas

CLASIFICACIÓN
231
of 297.527

REPUTACIÓN
406

CONTRIBUCIONES
9 Preguntas
209 Respuestas

ACEPTACIÓN DE RESPUESTAS
77.78%

VOTOS RECIBIDOS
80

CLASIFICACIÓN
 of 20.454

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 159.075

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

  • First Review
  • 12 Month Streak
  • Thankful Level 3
  • Thankful Level 2
  • Knowledgeable Level 4
  • First Answer

Ver insignias

Feeds

Ver por

Respondida
Regarding deconvoultion using a point-spread function
load('data'); tmp=[flipud(image1);image1]; tmp=deconvwnr(tmp,PSF,0.5); image2=tmp(end/2+1:end,:); figure(), hold on subpl...

24 días hace | 0

| aceptada

Respondida
Differentiating in one direction using FFT2
How about this? It generalizes your original function to let you differentiate along any specified dimension dim for any nD arra...

24 días hace | 1

Respondida
I have some questions about the example "Denoise Signals with Generative Adversarial Networks"
The helper functions are at the bottom of the page- https://www.mathworks.com/help/signal/ug/denoise-signals-with-generative-ad...

26 días hace | 0

Respondida
shared colorbar for specific plots in tiledlayout
main(1,1) function main(Boolean1,Boolean2) B=[Boolean1,Boolean2]; Z1 = peaks; Z2 = membrane; if B==[0,0] %#ok<...

26 días hace | 0

| aceptada

Respondida
nargin of optional arugments
func(1,arg2=3,arg3=5) function func(arg1,names,values) arguments arg1 = 1 end arguments (Repeating)...

alrededor de 1 mes hace | 0

| aceptada

Respondida
Setting global variables independently on each worker for parallel computation
i am not looking for the variable to be assigned globally across all workers but to be assigned globally within each local worke...

alrededor de 1 mes hace | 0

Respondida
Why are these zeros adding themselves to the array?
ex1=[2.0000 2.5000 0 2.7083 0 2.7181 0 0 0 2.7183] ex1=nonzeros(ex1)'

alrededor de 1 mes hace | 0

Respondida
fminunc step size too small
The solution I have found is to provide the function with my own calculated gradient and manually multiplying it by 1e6. That m...

alrededor de 1 mes hace | 0

Respondida
Convert Set of (x,y) Coordinates Into Polygon
load coordinates shp = alphaShape(coords(:,1),coords(:,2),'HoleThreshold',50); [~,P]=boundaryFacets(shp); chull=convhul...

alrededor de 1 mes hace | 0

Respondida
How do I set up fmincon correctly for parallel computation? "Supplied objective function must return a scalar value"
There are other acceleration strategies that may be superior to parallelization. I notice in your examples that the in1,in2 pai...

alrededor de 2 meses hace | 0

Respondida
Complex multiplication giving incorrect result
You can also pre-sort - A = 1.0e+08 *[-1.1051 + 0.0000i , -0.4594 + 1.8182i, -0.4594 - 1.8182i, -0.2933 + 2.8161i , -0.2933 ...

alrededor de 2 meses hace | 0

Respondida
define an objective function with user defined number of variables in fminunc()
In the narrow case where your fun is always going to be an anonymous function of x, you could do this - xmin=problem( @(x) x...

alrededor de 2 meses hace | 0

Respondida
Deconvolution of two different Gaussians
Is it possible to deconvolve the resultant in such a way that I see espread? Since you deconvolve y by espread, of course you w...

alrededor de 2 meses hace | 0

Respondida
Command Window prompt stays in view during Run Section
A simple way to get rid of it, I find, is to just execute any command at the prompt even a trivial one like a single number. For...

2 meses hace | 0

| aceptada

Respondida
Help fixing different sized plots with tiled layout
axis equal does not ensure that the plot box reserved for the image will fit around it tightly. For that, you must add axis tigh...

3 meses hace | 0

Respondida
How to get correct pixel size in 2D after cut 3D voxel using obliqueslice
The pixels sizes in the slice images are always 1, as you can see below. The dimensions of the slice are a harder thing to predi...

3 meses hace | 0

Respondida
How to count the amount of small squares in this picture?
BW=imbinarize(im2gray(imread('image.png'))); BW([1,end],:)=0; BW(:,[1,end])=0; BW=imopen(BW,ones(2)); nv=numAlong(B...

3 meses hace | 0

Respondida
What is the state structure for mixed integer ga optimization?
I assume the "state structure" you're talking about is for an OutputFcn. If so, the state structure is not something that can be...

3 meses hace | 1

Respondida
Linear indices from colon operator
K=createArray(size(array),Fill=sparse(0)); K(p1:p2,p3:p4)=1; out=find(K); %linear indices

4 meses hace | 0

Respondida
methods in separate files
You cannot have both a method and a property named nch.

5 meses hace | 0

Respondida
Chasing what is wrong with 'dual-simplex-highs' in linprog
intlinprog offers some additional diagnostic output - load('linprog_test.mat') intlinprog(c,[], [], [], Aeq, beq, LB, UB)

6 meses hace | 1

Respondida
How to log the data in the workspace without modifying the content of the for loop?
I also do not see how B is a loop if it doesn't have it's own iterations. But anyway, maybe this is what you meant - storedDat...

6 meses hace | 0

Respondida
GPU memory usage for Hadamard product
Does MATLAB implicitly convert B to a full matrix? When you say this, are you implying that issparse(B)=true? If so, then it is...

8 meses hace | 0

Respondida
Resolve: "Dot indexing is not supported for variables of this type."
You need to stop the code at rawDataReader>initDisplayPage (line 716) and examine what type of variable jframe is. According to ...

8 meses hace | 0

Respondida
Merging different legend labels
x1 = [1, 2 ,3, 4, 5]; y1 = [5, 3, 2.8, 1.7, 1.2]; y2 = [6.5, 4.7, 3.5, 1.9, 1.3]; x2 = [1, 2, 3, 4, 5]; y3 = [6, 5.6, 3.1, 2...

8 meses hace | 0

Respondida
How to upsample an ECG signal and its associated data?
Use interp1 to sample the signals where you want.

9 meses hace | 0

Respondida
How to distinguish pressing cancel vs entering an empty string in inputdlg?
You could also do this - while badFileName == true attemptsLeft = num2str(5 - errorCounter); outputName = inputdlg([...

9 meses hace | 0

Respondida
Solve ill-conditioned linear systems
If b has no noise in it, you could try normalizing the rows of A a=vecnorm(A,2,2); A=A./a;b=b./a; x=A\b;

9 meses hace | 0

Respondida
How do I export a matlabb app?
It should be enough to give them the .mlapp file.

9 meses hace | 0

| aceptada

Cargar más