photo

Dimitris Iliou

Last seen: alrededor de 2 meses hace Con actividad desde 2016

Followers: 0   Following: 0

Mensaje

Estadística

All
  • Knowledgeable Level 3
  • Solver
  • Knowledgeable Level 2
  • First Answer

Ver insignias

Feeds

Ver por

Respondida
How to vectorize a sequence of 2D images using matlab?
In order for this code to work, you will need to correct some of the variables you are using. Firstly, in |Pics(n)|, what is ...

más de 6 años hace | 0

Resuelto


How to subtract?
*&plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn* * Imagine you need to subtract one...

más de 6 años hace

Respondida
How to set legend for filled areas.
If I understand correctly, you want the |FaceAlpha| value of each patch in the legend to change according to the fill in the plo...

casi 7 años hace | 5

| aceptada

Respondida
How can I obtain the data output after ECG Noise removal
If I understand you correctly, you want to know where you can find the new filtered signal. In the example you used, there a...

casi 7 años hace | 0

Respondida
Why is the latex font not selectable in eps export?
If I understand correctly, you are just trying to change the fonts in your plots. To do that, you could try and change them usin...

casi 7 años hace | 0

Respondida
are resistors and capacitors in simscape library ideal?
If you are using the Simscape Foundation Library: <http://www.mathworks.com/help/physmod/simscape/electrical-models.html> ...

casi 7 años hace | 0

| aceptada

Respondida
ARMA+GARCH inferred residuals and volatility inconsistency.
If you go the documentation page of the |infer| function: <http://www.mathworks.com/help/econ/cvm.infer.html> you will not...

alrededor de 7 años hace | 0

Respondida
Detect the edge and mesaure the distance measurement of jet?
There is a relevant MATLAB Answers post that might be of help. It talks about finding the length of an object in an image. <h...

alrededor de 7 años hace | 0

Respondida
How to perform layer wise fine tuning of Alex Net for medical image classification?
To find more information on Transfer Learning and Fine-Tuning of CNNs, you can go to following documentation page: <https://w...

alrededor de 7 años hace | 0

| aceptada

Respondida
How can I log Signals to Workspace in accelerator mode ?
The reason you are experiencing this issue is because of the way the |sim| function works. If you go to the corresponding docume...

alrededor de 7 años hace | 0

Respondida
Modify Transition condition of Stateflow with script
There is a way to modify a transition condition in Stateflow. To do that, you will need to use the Stateflow API. You can fin...

alrededor de 7 años hace | 0

| aceptada

Respondida
How do I copy a panel from one figure to another?
If I understand correctly, you want to copy the contents of the panel in figure B to the panel in figure A, and after that close...

alrededor de 7 años hace | 1

| aceptada

Respondida
How to make a shortcut to always "Run as Administrator"
Please keep in mind that this is a Windows workflow and not a MATLAB specific one. What I would suggest is # Go to the M...

alrededor de 7 años hace | 3

| aceptada

Respondida
how to make a PN code?
The problem with your code is that the if(sum(check_sum(k,1:1022).*check_sum(k,1:1022))==1022) is never true. Due to th...

alrededor de 7 años hace | 0

Respondida
trainCascadeObjectDetector uses what type of classifier?
If you go to the documentation page of the |trainCascadeObjectDetector|: <http://www.mathworks.com/help/vision/ref/traincasca...

alrededor de 7 años hace | 0

Respondida
I plotted a graph from data I got from simulations, however the challenge I am having is that some data points are on the Y and X axis. I have tried using Log & semilogx but its giving me -ve values. I need +ve values. How can I resolve this pls?
Since you have data that I am assuming are expressed geometrically, you might have to use a logarithmic scale. A negative va...

alrededor de 7 años hace | 0

Respondida
How to change the number of outputs of a MATLAB function block programmatically
There is a similar MATLAB Answers post on how to change the number of inputs programmatically. You can find that post in the fol...

alrededor de 7 años hace | 0

| aceptada

Respondida
Are there any commands for measuring growth rate from a Video?
There is a similar MATLAB Answers post that could possibly help you achieve your workflow. You can find that in the followin...

alrededor de 7 años hace | 1

Respondida
Is it possible to access the headers and packet information from the JPEG 2000 compressed format?
If you want to access information related to an image, you could use the |imfinfo| function. You can find more details in the fo...

alrededor de 7 años hace | 0

Respondida
How do I combnine a plot of a colored velocity field in my FEM solution?
Assuming that you have a similar workflow to the following example: <http://www.mathworks.com/help/physmod/elec/examples/sole...

alrededor de 7 años hace | 0

Respondida
Is there a way to extract cell array with multiple layer to excel file?
Assuming that you are using |xlswrite| to create the .xls file, you should not be able to achieve this workflow. If you look ...

alrededor de 7 años hace | 0

Respondida
Plots in one graph GUI evalin
If understand your question correctly, you are trying to plot the choices that are selected in a list-box. The error that yo...

alrededor de 7 años hace | 0

| aceptada

Respondida
Create DLL for PXI-8196 controller
To create the .dll you could use the |ert_shrlib.tlc| System Target File, but you need to have Embedded Coder in order to do tha...

alrededor de 7 años hace | 0

Respondida
How do I make a function for running/potting "smoothing spline" on all my y plots? I can do it for one y plot, but can't figure out how to do the rest..thanks!
If I understand correctly you want to get all the code that is below %PREPARING/SHOWING CURVE DATA and make it into a f...

alrededor de 7 años hace | 0

Respondida
Why is my Laplacian of Gaussian function different from fspecial even though my Gaussian function is correct?
If I understand correctly, you wrote your own implementation of LoG but when you compare it with the built-in |fspecial| the res...

alrededor de 7 años hace | 1

Respondida
How can I change the frequency range setting "power_zmeter('sys')" in a script?
If I understand correctly, you want to use the |power_zmeter| command to create the impedance within a script and then plot it a...

alrededor de 7 años hace | 0

Respondida
Live script: Error Loading
I think the reason you are getting this error is possibly because the .mlx file becomes corrupted. One thing I can suggest i...

alrededor de 7 años hace | 1

Respondida
Hello! How to plot cumulative periodogram in Matlab with 95% confidence interval?
If I understand correctly, you want to have a MATLAB script that resembles the behavior of 'cpgram' in R. A possible answer ...

alrededor de 7 años hace | 1

Respondida
How to use index information of one image to derive the other image's values at the same index?
If I understand you question correctly, you want to get the intensity information of the second image, using coordinate values y...

más de 7 años hace | 0

| aceptada

Respondida
Add a drop-down menu in block parameters while creating a custom Simscape block ?
In order to add a drop-down menu in the block parameters, you will need to add a mask to the custom Simscape block you are creat...

más de 7 años hace | 0

Cargar más