photo

Romain


iTK

Last seen: plus de 5 ans il y a Actif depuis 2014

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

0 Questions
9 Réponses

Cody

0 Problèmes
175 Solutions

RANG
2 470
of 301 436

RÉPUTATION
26

CONTRIBUTIONS
0 Questions
9 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
7

RANG
 of 21 278

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
1 598
of 174 540

CONTRIBUTIONS
0 Problèmes
175 Solutions

SCORE
1 730

NOMBRE DE BADGES
2

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • First Review
  • Knowledgeable Level 1
  • First Answer
  • CUP Challenge Master
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
Run a gui from a .mat file, save the variables from that gui and use them in the .mat code.
I'm not sure to understand what you want to do, but a GUI function works like any other function. You can call it in function/sc...

presque 12 ans il y a | 0

Réponse apportée
To sum functions which have two unknowns and finding the min values of these unknowns
I propose : Create a function: function F = myFunc(xy,t, BS, r) F = 0; for m=1:4 F = 2*r(ti,m)+hypot(xy...

presque 12 ans il y a | 0

Réponse apportée
colormap and GUIDE using axes components
You should look at this : <http://www.mathworks.com/matlabcentral/answers/101346-how-do-i-use-multiple-colormaps-in-a-single-...

presque 12 ans il y a | 0

Réponse apportée
how to rotate a image in gui?
However the function 'rotate' exist in matlab 2014. doc rotate

presque 12 ans il y a | 0

Réponse apportée
User authentication in matlab GUI
Des sujet en parle déjà : http://www.mathworks.com/matlabcentral/answers/20400-encryption-of-password Sinon, j'ai aussi trouv...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Why I got the following error when I run the ".exe" file compiled by matlab 2012b?
I'm not sure that you can create an *.exe file with only a function. I think that you have to compile a script.

presque 12 ans il y a | 0

Réponse apportée
how to insert image to gui?
You can use the function 'axes' to select the axe for your image : axes(axisHandle) matlabImage = imread('image.png'...

presque 12 ans il y a | 6

Réponse apportée
process data from csv file
I suggest you to use the function csvread : clear; close all; out = csvread('C:\Users\yyao\Desktop\Luminance_18.csv',...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
How can i find rows or coulmns which contain maximum zeroes?
If you want the row and the colum with the maximum of values equal to zeros, I propose (for a 2D matrix) : [numberOfZeroCol...

presque 12 ans il y a | 1