photo

Delprat Sebastien


Univ de Valenciennes

Last seen: 2 mesi fa Attivo dal 2001

Followers: 1   Following: 0

Messaggio

Statistica

All
MATLAB Answers

3 Domande
23 Risposte

File Exchange

6 File

Cody

0 Problemi
6 Soluzioni

RANK
2.564
of 299.772

REPUTAZIONE
24

CONTRIBUTI
3 Domande
23 Risposte

ACCETTAZIONE DELLE RISPOSTE
33.33%

VOTI RICEVUTI
2

RANK
5.933 of 20.801

REPUTAZIONE
200

VALUTAZIONE MEDIA
5.00

CONTRIBUTI
6 File

DOWNLOAD
9

ALL TIME DOWNLOAD
1838

RANK
50.832
of 165.865

CONTRIBUTI
0 Problemi
6 Soluzioni

PUNTEGGIO
70

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • GitHub Submissions Level 2
  • Personal Best Downloads Level 1
  • 3 Month Streak
  • Knowledgeable Level 2
  • 5-Star Galaxy Level 1
  • First Submission
  • Revival Level 2
  • First Answer
  • Solver

Visualizza badge

Feeds

Visto da

Inviato


continuationProcedure
The Continuation Procedure Toolbox allows performing continuation procedures for instance to solve complex BVP that arise in so...

2 mesi fa | 3 download |

0.0 / 5
Thumbnail

Inviato


Iterative Display
This toolbox allows accelerating the graphic plotting within loops or iterative code

2 mesi fa | 1 download |

0.0 / 5
Thumbnail

Risposto
How to take the average every 4 data points?
There is a smooth function y=smooth(x,4)... Simple and should be enough.

circa un anno fa | 0

Risposto
How to fully use the CPU of my PC?
There are several answer to optimize code: Always prealocate vectors (do not let an array increase within a loop, prealocate th...

circa un anno fa | 0

Risposto
Why does 'Help' Documentation in MATLAB R2020a not work when the Proxy server is enabled?
I'm using Matlab 2024a. I performed all the test listed here and the documentation windows remains empty. Modifying the jar file...

oltre un anno fa | 0

Risposto
How to redirect stdout to a text box in a UI?
Here is a Piece of Code that works using Events clearvars close all clc % Create a process pProcess = System.Diagnostics...

oltre un anno fa | 0

Domanda


Feature request: multi-dimensional feature input layer for dlNetwork
This is a feature request for deep network : Why can't we input multidimensional input features in an inputFeatureLayer ? They ...

circa 2 anni fa | 1 risposta | 0

1

risposta

Domanda


rlVectorQValueFunction with a custom Network for a DPQ agent
Question in short: how to design a DQN agent that uses a rlVectorQValueFunction critic based on a custom dlnetwork for an enviro...

circa 2 anni fa | 1 risposta | 0

1

risposta

Domanda


Simulink arduino : compile unmodified code at every run
I'm using an arduino MEGA 2650 + simulink model in external mode with the "Simulink Arduino package". It works fine. However,...

quasi 3 anni fa | 1 risposta | 0

1

risposta

Inviato


Excel manipulation through Active X
This code provides an object to demonstrate how to automate Excel from Matlab.

quasi 3 anni fa | 1 download |

0.0 / 5

Inviato


Microsoft Access though COM
This code demonstrate how to create a database, open a dbf file, perform query in Microsoft Access from Matlab.

quasi 3 anni fa | 2 download |

0.0 / 5

Risposto
How can I read a *.dbf file using the database toolbox?
Anna, could your share your code snippet to open a dbf file. Even if its slow, I would be very interested.

quasi 3 anni fa | 0

Risposto
How can I tune my PID controller using Ziegler Nichols?
Please stop using ziegler nichols. This method has been created a whole ago when computers were not available. It is only intend...

quasi 5 anni fa | 0

Risposto
Algebraic loop in LQR state feedback control system?
The algebraic loop does not depends on continous ou discrete nature of the process, but on the direct transfert of the input to ...

quasi 5 anni fa | 0

| accettato

Risposto
Finding out lag in signals
One approach is to find the max of the signals correlation. Alternatively, there is a finddelay function (cf doc) Here is some ...

quasi 5 anni fa | 0

Risposto
"Or" statement and "not equal to" signal
% find rows that does not contains 4 in col 1 & 2 rowOk=(M(:,1)~=4) & (M(:,2)~=4) % Use logical indexing to keep these row m=...

oltre 5 anni fa | 0

| accettato

Risposto
Create a .avi through VideoWriter
Well everything is in the doc and that's very easy. It is writeVideo. Z = peaks; surf(Z); axis tight manual set(gca,'next...

oltre 5 anni fa | 1

| accettato

Risposto
Are there any options to resize/replicate the matrices/vectors between layers of a deep network?
I did a custom reshape layer for that purpose. Read the custom layer doc, it is very simple.there is however a very big limitati...

oltre 5 anni fa | 0

Risposto
Is it possible to use Alexnet to classify multiple objects in a single image?
You need to use another kind of network. Basically a so called Fast-R network will reuse an existing network (Alexnet for instan...

oltre 5 anni fa | 0

| accettato

Risposto
How to add more datasets into pre-trained network in the deep learning process
I'm not sure this is possible, what ever the Deep-learning framework you are using: the network has been trained to classify ima...

oltre 5 anni fa | 0

| accettato

Risposto
I have multiple jpeg or tiff images with timestamps as their names from a high frame rate camera. I want to extract their time stamps in an the list format without the .tiff or .jpeg extension. Kindly help
You may use fileparts to retrieve the name and extention: [filepath,name,ext] = fileparts(filename) https://fr.mathworks.com/h...

oltre 5 anni fa | 0

Risposto
Two Issues about MATLAB's Official Example of GAN
A few other tips for improving performances. 1) One-sidded label smoothin In order to improve the stability, it is also advise...

oltre 5 anni fa | 0

Risposto
Two Issues about MATLAB's Official Example of GAN
I also think that the iteration number should only be increased if the iteration takes places (obvious). This may be usefull for...

oltre 5 anni fa | 0

Risposto
I have to digitize this image(Contour Map) for Grid of 0.1x0.1 .
You may download the open source Hybrid Vehicle Simulation software called Advisor (initialy developped by NREL). Available on s...

oltre 6 anni fa | 0

Risposto
how to generate deep dream data from own Images ?
Unfortunately, due to Mathworks copyright, I cannot disclose the source code of their functions. If you follow the steps detai...

oltre 7 anni fa | 0

Risposto
how to generate deep dream data from own Images ?
In the deepDreamImageLaplacianNorm2.m you must not comment the gradient ascend *%* X = X + gradient * stepSize; ...

oltre 7 anni fa | 0

Inviato


Deep dreaming animation for Matlab
Generate colorfull deepdream image by adding clipping to the original Matlab deepdream function

oltre 7 anni fa | 1 download |

5.0 / 5
Thumbnail

Risposto
how to generate deep dream data from own Images ?
Please look at the following code https://fr.mathworks.com/matlabcentral/fileexchange/66710-deep-dreaming-animation-for-matlab...

oltre 7 anni fa | 0

Risposto
How to display Deep dream image from jpg ?
Please look at the following code https://fr.mathworks.com/matlabcentral/fileexchange/66710-deep-dreaming-animation-for-matlab...

oltre 7 anni fa | 0

Risposto
How to Increase Deep Dream image generation speed ?
Basically, install the GPU coder. By default, most of the neural network function will use your GPU instead of CPU. Expect to re...

oltre 7 anni fa | 0

Carica altro