Julien
Faurecia
2012 年からアクティブ
Followers: 0 Following: 0
Innovation Engineer
Professional Interests: Energy, Heat Recovery, Simulations
統計
All
Feeds
回答済み
Strange behavior of GUI with GUIDE
I found a solution, it seems well working. It could be a process to create multitab GUI's with GUIDE. * - Put all the compone...
Strange behavior of GUI with GUIDE
I found a solution, it seems well working. It could be a process to create multitab GUI's with GUIDE. * - Put all the compone...
約11年 前 | 0
質問
Strange behavior of GUI with GUIDE
Hello, I'm trying to build a GUI by combining GUIDE and the GUI Layout Toolbox. I would like to build a multitab GUI very qui...
約11年 前 | 1 件の回答 | 0
1
回答質問
Timer stop delay problem
Hi Everybody, I'm building a GUI that allow me to replay some bench datas. To do so, I have included a timer object that refr...
11年以上 前 | 0 件の回答 | 0
0
回答回答済み
How to measure picture in Matlab GUI
Hi, What do you mean about measuring a picture ? If you only want to get the resolution, use P=imread('picturename.format...
How to measure picture in Matlab GUI
Hi, What do you mean about measuring a picture ? If you only want to get the resolution, use P=imread('picturename.format...
12年弱 前 | 0
| 採用済み
回答済み
saving a dynamic file
Hi, how is defined your matrixname ? Do you want to store all matrix inside one .mat file ?
saving a dynamic file
Hi, how is defined your matrixname ? Do you want to store all matrix inside one .mat file ?
約12年 前 | 0
回答済み
¿How to order 'x' numbers in ascending or descending?
Hi, this function already exists on Matlab. It is called 'sort' Additional information here http://www.mathworks.fr/fr/he...
¿How to order 'x' numbers in ascending or descending?
Hi, this function already exists on Matlab. It is called 'sort' Additional information here http://www.mathworks.fr/fr/he...
約12年 前 | 1
回答済み
Calculate 3 x 3 rotation matrices from 3 x n matrix
Ok I found an other way, more properly, to store you resulting matrices. You will store them inside a structure and create dynam...
Calculate 3 x 3 rotation matrices from 3 x n matrix
Ok I found an other way, more properly, to store you resulting matrices. You will store them inside a structure and create dynam...
約12年 前 | 0
| 採用済み
回答済み
Calculate 3 x 3 rotation matrices from 3 x n matrix
Hi Thomas, The code is not hard to write. When you want to make sequential calculations, you have first to write it for one s...
Calculate 3 x 3 rotation matrices from 3 x n matrix
Hi Thomas, The code is not hard to write. When you want to make sequential calculations, you have first to write it for one s...
約12年 前 | 0
回答済み
Generating Triangular wave in simulink
My example simulink block is online http://www.mathworks.com/matlabcentral/fileexchange/38526
Generating Triangular wave in simulink
My example simulink block is online http://www.mathworks.com/matlabcentral/fileexchange/38526
約12年 前 | 0
回答済み
Getting the value of a graph at a certain point
you have to make a 2D interpolation interp2(X,Y,Z,xi,yi) with X,Y,Z : values from your datas (xi,yi) the coordinates o...
Getting the value of a graph at a certain point
you have to make a 2D interpolation interp2(X,Y,Z,xi,yi) with X,Y,Z : values from your datas (xi,yi) the coordinates o...
約12年 前 | 0
回答済み
what is the function of guidata
Hi, guidata is a function to store and retrieve datas inside GUI's. It's a method to share datas between gui's component. But...
what is the function of guidata
Hi, guidata is a function to store and retrieve datas inside GUI's. It's a method to share datas between gui's component. But...
約12年 前 | 0
回答済み
Table, Popup, Initial Value Problem
Hi, You can add set(handles.mytable,'Data',myinitdatas) inside the pop up menu callback
Table, Popup, Initial Value Problem
Hi, You can add set(handles.mytable,'Data',myinitdatas) inside the pop up menu callback
約12年 前 | 0
回答済み
How to build multiple column vector output arguments by indexing from several single column arrays
Hi, It exists many solutions to define sequential names of variables (PV1 PV2 PV3 ...) inside a for loop. The most simple ...
How to build multiple column vector output arguments by indexing from several single column arrays
Hi, It exists many solutions to define sequential names of variables (PV1 PV2 PV3 ...) inside a for loop. The most simple ...
約12年 前 | 0
| 採用済み
回答済み
Use of command line to modify Simulink models
Hi, I have never done it but I read something about SET_PARAM function during my research you can find help here : http:/...
Use of command line to modify Simulink models
Hi, I have never done it but I read something about SET_PARAM function during my research you can find help here : http:/...
約12年 前 | 0
回答済み
is it possible to copy an image or data to simulink from any other source or from this site itself, i mean models?
You want to add customs block to simulink library browser? 1) Open Simulink, go to File -> New -> Library 2) Insert your s...
is it possible to copy an image or data to simulink from any other source or from this site itself, i mean models?
You want to add customs block to simulink library browser? 1) Open Simulink, go to File -> New -> Library 2) Insert your s...
約12年 前 | 0
回答済み
Generating Triangular wave in simulink
Hi, the triangle generator does not exist but you can create your own. My tip is to create a pulse signal (pulse width =50%...
Generating Triangular wave in simulink
Hi, the triangle generator does not exist but you can create your own. My tip is to create a pulse signal (pulse width =50%...
約12年 前 | 0
回答済み
Passing data between diferent GUIs
In fact, the first input for getappdata,setappdata, (and also set and get ) functions is a *handle*. It's a kind of pointer that...
Passing data between diferent GUIs
In fact, the first input for getappdata,setappdata, (and also set and get ) functions is a *handle*. It's a kind of pointer that...
約12年 前 | 2
回答済み
Problems with a resize function callback
Yes I use this toolbox to avoid defining all positions vector for all my components, I really dislike to do this ^^ But I prefer...
Problems with a resize function callback
Yes I use this toolbox to avoid defining all positions vector for all my components, I really dislike to do this ^^ But I prefer...
約12年 前 | 0
回答済み
How to change the font size of the editor bar where open file's names are listed?
Are you talking about the files listed inside your current folder? Select the tab *File* -> *Preferences*. Then go to *Fo...
How to change the font size of the editor bar where open file's names are listed?
Are you talking about the files listed inside your current folder? Select the tab *File* -> *Preferences*. Then go to *Fo...
約12年 前 | 1
回答済み
Passing data between diferent GUIs
Hi, you have several method to share datas everywhere inside Matlab. The method you will choose depends on what kind of gui y...
Passing data between diferent GUIs
Hi, you have several method to share datas everywhere inside Matlab. The method you will choose depends on what kind of gui y...
約12年 前 | 4
| 採用済み
回答済み
how to embed matlab function simulink
Hi, You can use the ' Matlab function ' block (found inside user-defined function library ) But this simple function can als...
how to embed matlab function simulink
Hi, You can use the ' Matlab function ' block (found inside user-defined function library ) But this simple function can als...
約12年 前 | 0
質問
Problems with a resize function callback
Hi, I'm developing a programmed GUI (using the nice GUI toolbox layout available on file exchange). What I want to do is to ...
約12年 前 | 2 件の回答 | 1