Community Profile

photo

Grzegorz Knor


Last seen: más de 2 años hace Con actividad desde 2010

Professional Interests: data science, finite element method, signal processing, machine learning

Programming Languages:
Python

Estadísticas

All
  • Scavenger Finisher
  • Thankful Level 3
  • 6 Month Streak
  • Likeable
  • Famous
  • Personal Best Downloads Level 1
  • First Review
  • 5-Star Galaxy Level 3
  • First Submission
  • Project Euler I
  • Pro
  • Revival Level 2

Ver insignias

Content Feed

Ver por

Respondida
anyone have source code of fuzzy c means?
There is <https://uk.mathworks.com/help/fuzzy/fcm.html fcm> function from <https://uk.mathworks.com/help/fuzzy/index.html?s_cid=...

más de 6 años hace | 1

Pregunta


Live Editor and view neural network
Hi, I would like to add a neural network graphical diagram to my live script. Unfortunately command <https://uk.mathworks.co...

más de 6 años hace | 1 respuesta | 1

1

respuesta

Respondida
How to get 15-min average values from 10 min average values?
I suggest to use interpolation: <https://uk.mathworks.com/help/matlab/ref/interp1.html interp1> t1 = 10:10:60 av1 = [3, ...

más de 6 años hace | 0

Respondida
save image in matlab
Please read this topic in a documentation: <https://www.mathworks.com/help/matlab/creating_plots/save-figure-at-specific-size-a...

más de 6 años hace | 0

| aceptada

Respondida
Question on imageDataStore syntax and parameters
All 'Name-Value Pair' arguments are described in the documentation: <https://uk.mathworks.com/help/matlab/ref/imagedatastore.ht...

más de 6 años hace | 0

| aceptada

Respondida
re-train a pre-trained autoencoder
To encode data from retrained network you need to create new network, which contains only encoder layer. Please see the code (it...

más de 6 años hace | 1

Respondida
I want to create random bumps on a flat surface
You can add <https://en.wikipedia.org/wiki/Gaussian_function#Two-dimensional_Gaussian_function Two-dimensional Gaussian function...

más de 6 años hace | 0

| aceptada

Respondida
Read the data from specific line in MATLAB
For the first time use <https://uk.mathworks.com/help/matlab/import_export/import-data-interactively.html Import Tool> and then ...

más de 6 años hace | 0

Respondida
How could I find the start index of an "approximate" pattern in a binary vector
I would try <https://uk.mathworks.com/help/matlab/ref/regexp.html regular expressions> : case1 = [0 0 0 0 0 0 0 1 1 1 0 0 0...

más de 6 años hace | 0

Respondida
Logistic Function Transform of vector values
Matrix dimensions must agree. Add dot before division ( */* ): S1=(1./(1 + exp(1).^(-1*Stemp)))

más de 6 años hace | 0

| aceptada

Pregunta


Convolutional neural network: parallel layers
Is it possible to create a CNN with parallel layers in MATLAB? For example I would like to build network similar to this one: ...

más de 6 años hace | 2 respuestas | 2

2

respuestas

Respondida
How to determine which algorithm mldivide (A\b) uses
For sparse matrices check function <https://uk.mathworks.com/help/matlab/ref/spparms.html spparms> : spparms('spumoni',2) ...

casi 7 años hace | 2

Respondida
How to calculate moving average in a matrix?
From MATLAB R2016a there are functions _<https://uk.mathworks.com/help/matlab/ref/movmean.html%20 movmean>_ and _<https://uk.mat...

casi 7 años hace | 0

Respondida
Create a moving average
From MATLAB R2016a there is a function movmean which does not require additional toolboxes.

casi 7 años hace | 3

Pregunta


Pareto chart and XTickLabelRotation
Is there a way to plot Pareto chart and rotate XTick labels properly? Let's look at the code: y = randi(1e3,10,1); name...

casi 7 años hace | 1 respuesta | 0

1

respuesta

Pregunta


plot - strange behaviour for big numbers
I've found a strange behavior of *plot* function in MATLAB 2015b (Windows 7). Namely this code: plot([1,1],[1e+19,100]) ...

más de 7 años hace | 0 respuestas | 0

0

respuestas

Respondida
Minimize rosenbrock function via particle swarm optimization algorithm
See: <http://www.mathworks.com/matlabcentral/fileexchange/7506> And for Rosenbrock function: <http://www.mathworks.com/...

alrededor de 9 años hace | 1

Respondida
how can i solve this integral ?
You can solve it online using Wolfram Alpha-> <http://www.wolframalpha.com/input/?i=Integrate%5B%25281+-+E%5E%25280.0081+x%2529+...

más de 9 años hace | 0

Respondida
How to convert mfile to c code????
Please refer to this page: <http://www.mathworks.com/products/matlab-coder/>

más de 9 años hace | 0

Respondida
Rotation of a contour plot
Look at this example: a = 37; [x,y] = meshgrid(linspace(-4,4,30)); z = exp(-x.^2/15-y.^2); contour(x,y,z) xlim(...

más de 9 años hace | 0

| aceptada

Respondida
is it possible to square every element in equation ?
You have to use regular expression. <http://www.mathworks.com/help/matlab/ref/regexprep.html> Suppose that you use only s...

casi 10 años hace | 0

Respondida
How can I solve this equation in MATLAB
Use mldivide operator to solve systems of linear equations of type Ax = b: <http://www.mathworks.com/help/matlab/ref/mldivide...

casi 10 años hace | 0

Pregunta


Patternsearchw with genetic algorithm
Hi, I would like to run _patternsearch_ function with _SearchMethod_ option set to _searchga_. But it seems that _patternsear...

alrededor de 10 años hace | 1 respuesta | 0

1

respuesta

Respondida
How can I find out what algorithm mldivide is using?
See *spparms* function. For example: A = sparse(diag(rand(5,1))) spparms('spumoni',2) A\rand(5,1) produces: s...

más de 10 años hace | 3

| aceptada

Respondida
[Animation]: To animate a figure as function of several variables
See *getframe* and *movie* functions in the MATLAB documentation.There is a following example: Z = peaks; figure('Render...

más de 10 años hace | 0

Respondida
Plotting a complicated function
Use *ezplot* function: ezplot('sqrt((2*(a+b))/(a*b)) - (1+sqrt(a))/sqrt(a) - (sqrt((2)/(b*(1+b))))*(1-b) = 1/sqrt(a) - (sqr...

más de 10 años hace | 0

Pregunta


Clipping property doesn't work?
It seems that *clipping* property doesn't work for plot objects like *bar*, *stem*, *stairs*. See simple exapmle: plot(1...

más de 10 años hace | 1 respuesta | 0

1

respuesta

Respondida
Circle plotting on different Planes
Try this code: X = [2 4 5 7]; Y = [0 2 1 0]; Z = [1 3 5 7]; r = 0.5; [x,y,z] = cylinder(r*ones(size(X)),1...

más de 10 años hace | 0

Respondida
smoothing plots from data
Are you sure that you want use anti-aliasing? *Linesmoothing* is an undocumented feature. You can use the *smooth* function t...

más de 10 años hace | 0

| aceptada

Respondida
how to select first 23 rows and 25 columns from a 25 X 25 matrix in matlab
a = rand(25); b = a(1:23,:); <http://www.mathworks.com/help/matlab/math/matrix-indexing.html>

más de 10 años hace | 2

| aceptada

Cargar más