Statistik
RANG
3.974
of 295.467
REPUTATION
13
BEITRÄGE
14 Fragen
6 Antworten
ANTWORTZUSTIMMUNG
64.29%
ERHALTENE STIMMEN
4
RANG
of 20.234
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 153.912
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
Xlswrite catching an error (Error: Call was rejected by the callee)
Hello, I am using xlswrite to import data(250,1) into an existed *.xlsm file; Several days ago, xlswrite worked normally, bu...
mehr als 11 Jahre vor | 1 Antwort | 0
1
AntwortHow to display a jpg or bmp figure on GUI pane with high quality?
Try imshow(I),displaying the grayscale image I
mehr als 11 Jahre vor | 0
Running program from the middle of the script
Comment the loop,and redefine the varibles from the loop as constant,such as % { while true % code a = .....
mehr als 11 Jahre vor | 0
| akzeptiert
"if condition not worked"
if expression % your expression synax do not comply with matlab statements else statements end The expr...
mehr als 11 Jahre vor | 0
how to save the figure?
num_of_fig = 1; fichier=fullfile('directory','filename') ; if true figure(k); name = strcat('figure',num2str(n...
mehr als 11 Jahre vor | 0
| akzeptiert
Frage
Can "Enter " button in keyboard be replaced with some built-in function ?
Hi ,everyone I use matlab to control one Prober, and fprintf some commands to prober ,it needs customer response ,such as pu...
mehr als 11 Jahre vor | 1 Antwort | 0
1
Antworthow to create a mat file of a given image with the same file name?
t = imread('a.jpg '); save('a.mat','t'); % save the varible t to a.mat Usage of function SAVE is : save (FILENAME ,VARI...
mehr als 11 Jahre vor | 1
need help fixing errors..
What's the P(j)? Before using the varible P ,you need to initialize it, such as P = linspace(0,1,101); And feel confused abou...
mehr als 11 Jahre vor | 0
Frage
Error using xlswrite;Error using javaMethod EDT
Hi,all My os is windows XP; When using xlswrite in a matlab executable file,I get an error message: Erro...
mehr als 11 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How can pushbutton2 control the ' while (pushbutton has been pressed down) in pushbutton_callback() ?
In a GUI produced by GUIDE ,there are two pushbutton, pushbutton1 and pushbutton2; The M script a follows: function push...
fast 12 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to turn the string {'sin(30);'} into a command ,such as a = sin(30)=-0.9880 ?
There is a cell y = {'sin(30);'}, how can i get the 'sin(30)' as a command ,such as a = function(y) = sin(30) = -0.988...
fast 12 Jahre vor | 1 Antwort | 0
1
AntwortFrage
h(i) = strcat('handles.uipanel',num2str(i)), when I use set(h(i),'Visible','ON') ,it doesn't work
Well ,I have a for ...end for b=1:9 h = strcat('handles.uipanel',num2str(b)); set(h,'Visible','ON'); end ...
fast 12 Jahre vor | 1 Antwort | 0
1
AntwortFrage
When deploytool , 'Unable to determine function name or input/output argument count for function in M-file 'filename'...
Whe I use the deploytool ,then build ,the error appears: Unable to determine function name or input/output argument co...
fast 12 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How to send varibles from M file to GUI edit text and can be shown multi-line ?
I have a GUI named g1,g1 consists of a edit text and a pushbutton; In the pushbutton_callback(),it invokes function M1(a1,a2...
fast 12 Jahre vor | 1 Antwort | 0
1
AntwortFrage
When use 'xlsread' , error 'Eror using Interface.Microsoft_excel_12.0_Object_Library._WorkSheet/set' ,please help!
The error as follows: Error using Interface.Microsoft_excel_12.0_Object_Library._WorkSheet/set Invoke Error, Dispatch Except...
fast 12 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How to get the path of a folder?
I want to get the path of a folder,not a file; Well, a dialog box pops up ,ask me to choose a folder, and I hope it can returns...
fast 12 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to use 'Edit Text' efficiently in a GUI?
I notices that there are two ways to ues it; The tag of edit1 is edit1. Method 1: function edit1_callback() ...
fast 12 Jahre vor | 1 Antwort | 2
1
AntwortFrage
How to share variables across GUIs?
As it said in title,there is a variant Num1 in GUI1, I hope that in GUI2 Num1 can changged, how ? Thank you!
etwa 12 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
when I use deploytool, error ' The input character is not valid in MATLAB statements or expressions' in Line: 1 Column:2
The error is as followes: Error: File: D:\test2\menu5\menu51119\MainGui.m Line:1 Column: 2 The input character is not va...
etwa 12 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How to set the default value for Edit Text in GUI ? If not input a number , I hope the contents auto changed to be '5'
In the function edit1_callback(),it is writed as : edit1 = str2double(get(hObject,'string')); if isempty(edit1) ...
etwa 12 Jahre vor | 1 Antwort | 1