Community Profile

photo

Roberto


2014년부터 활동

통계

All
  • Knowledgeable Level 3
  • First Review
  • First Submission
  • 3 Month Streak
  • Revival Level 2
  • Knowledgeable Level 2
  • First Answer
  • Solver

배지 보기

Content Feed

보기 기준

답변 있음
Matlab GUI: Showing data from COM port in listbox without using any push button
The callback function of a listbox is executed when you select an element of the list, what I think you might want is to read fr...

거의 10년 전 | 0

답변 있음
How do I read a range of elements in a given excel column into a new matlab array?
*This file is not a excel file* |*CSV FILES*| files are plain text files, and like any file.txt can be viewed with a simple t...

거의 10년 전 | 0

답변 있음
how can i call up either part of the results like (e1,e5,e6,e9)or (from e1 to e7)? then i need to combin them in one array
I'm assuming that the results |*e1, e2, e3...*| in the code you wrote is |*b{k}*|... you might get your results as an numeric ar...

거의 10년 전 | 0

답변 있음
Changing save name for text file
possible causes: * |*answer*| contains invalid charater(s) for a file name * more or less about the same error but the inval...

거의 10년 전 | 0

답변 있음
Please help - How can i limit the number of inputs in the editbox (GUI)
Try using the |*'String'*| property instead of the |*'Value'*| one: function edit1_KeyPressFnc(hObject,~) strEdit = ge...

거의 10년 전 | 0

답변 있음
uiwait for data sharing between multiple GUIs
not that I'm aware of!!

거의 10년 전 | 0

답변 있음
save GUI figure to pdf
try several overloaded methods for <http://www.mathworks.com/help/matlab/ref/uiputfile.html UIPUTFILE> [file path] = uiput...

거의 10년 전 | 0

| 수락됨

답변 있음
how to display string's edit box and string's popup when i go back from GUI2 to GUI1
All depends how your *data* is _*saved*_ and _*passed*_ between the different *GUIs*, start reading <http://www.mathworks.com/he...

거의 10년 전 | 0

답변 있음
Please help - How can i limit the number of inputs in the editbox (GUI)
Try using the <http://www.mathworks.com/help/matlab/ref/uicontrol_props.html#bqxoim8 *KeyPressFnc*> and in there compare the len...

거의 10년 전 | 0

답변 있음
How to call a variable with user string input
exampleD = ones(1,50); % this is an existing array inp = input('Which dataset are you working with? ','s'); % at this point ...

거의 10년 전 | 0

답변 있음
How to call a variable with user string input
exampleD = ones(1,50); % this is an existing array inp = input('Which dataset are you working with? '); for i = 1:numel(inp)...

거의 10년 전 | 0

답변 있음
As in Matlab Notebook use functions?
From what i know, functions must be named * *.m* not * *.doc* and shouldn't be saved in msWord format, but plain text format, fo...

거의 10년 전 | 0

답변 있음
What kind of structure is that in MATLAB I've never seen it before... (Differential equations)
It creates a function handle, also called anonymous functions learn more <http://www.mathworks.com/help/matlab/matlab_prog/anony...

거의 10년 전 | 0

| 수락됨

답변 있음
find the repetition of matrix rows
a = [1 2 3; 4 5 6;1 2 3; 3 2 4; 1 2 3; 3 2 1; 1 3 2] ; row2check = 1; repeated = 0 ; for i = 1 : size(a,1) repeate...

거의 10년 전 | 0

| 수락됨

답변 있음
creating a vector that repeats a number 360 times
r = ones(1,360)*500 % row vector c = ones(360,1)*500 % column vector

거의 10년 전 | 2

답변 있음
Help me plz, Empty matrix!
the *0* sized matrix means that non of the elements of |*f*| are greater than *30000*, so if you want solve the problem, try thi...

거의 10년 전 | 0

| 수락됨

답변 있음
How to write a faster seqrcomplement function
I really don't know if there's a faster alternative, but if you have millions of sequences try parallel computing... |*% para...

거의 10년 전 | 0

답변 있음
How can I Transform the time series data into frequency domain using Fast Fourier Transformed (FFT)
have a look into <http://www.mathworks.com/matlabcentral/answers/127437-matlab-to-find-individual-frequency-from-a-source this q...

거의 10년 전 | 0

답변 있음
concatenating string variable names and passing on values of a matrix in a for loop
Creating variable names via *EVAL* function is highly *NOT RECOMMENDED*. Try to use a different philosophy... try this for examp...

거의 10년 전 | 0

| 수락됨

답변 있음
How can I create new edit boxes based on user input, where are the callbacks generated????
Or you can try saving the *handles* after creating the control! for example: function button1_fnc_callback(hObject,eventDat...

거의 10년 전 | 1

답변 있음
How can I create new edit boxes based on user input, where are the callbacks generated????
Check this <http://blogs.mathworks.com/videos/category/gui-or-guide/ *video* tutorials!> on building *GUIs*. Also you can try th...

거의 10년 전 | 0

답변 있음
How to removed the ??? Reference to non-existent field error
this only means that variable *'bg_means'* doesn't exist in your file: sprintf(bgModelPath,PRM.CAMS{V}.name)

거의 10년 전 | 0

답변 있음
How to get image files from subdirectories with in a directory?
to get the files from a folder try this: selDossier = uigetdir; % ask for the folder searchedExtension = '.hdr' ; ...

거의 10년 전 | 0

답변 있음
is this allowed in a forloop
I don't see why not! only, are these valid arguments for your functions/subscripts? try to run it! but I think is perfectly vali...

거의 10년 전 | 0

| 수락됨

답변 있음
search the second column of a cell array according to the values in the first column
I'd recommend the use of structures: pippo.FSize= 10; pippo.MSize= 10; pippo.rho= 997; pippo.u2= 86.2262; So when you...

거의 10년 전 | 1

답변 있음
how to export multiple matlab variable outputs to excel sheet?
try to put all your variables in a cell for example! an then use the <http://www.mathworks.com/help/matlab/ref/xlswrite.html xls...

거의 10년 전 | 1

답변 있음
imshow, axes in GUI, cla not working
This is because *RA* axes is still visible and *you are creating one axe every time*, to create just one axe *try this code ...

거의 10년 전 | 1

| 수락됨

답변 있음
GUIDE Callback function error
the problem isn't your *GUI* the problem is in your *VHDL_Project_Open.m* file, at the fopen(s); Line, this means that ...

거의 10년 전 | 0

| 수락됨

제출됨


Easy programatic GUI Layout
Automatic placement of objects in a GUI - Easy Design Graphical User Interfaces

거의 10년 전 | 다운로드 수: 1 |

Thumbnail

답변 있음
matlab problem .. please help
try starting <http://www.mathworks.com/matlabcentral/answers/8626-how-do-i-get-help-on-homework-questions-on-matlab-answers *HER...

거의 10년 전 | 0

더 보기