hi everybody,
I can't label the axes as I wish. There are several functions I can use, but I think they are all not the ones I need.
With this one it sets the Label 'mm' in the center of my xaxis.
XLabel('mm')
But I like to have the label at the end of the axis in the same row as my...
Hi,
that was a problem for me too. But I found a solution.
I needed two entries:
%%input dialog box%%%
prompt = {'Enter gain:','Enter range:'};
dlg_title = 'Enter values';
num_lines= 1;
def = {'20','256'}; %default
answer = inputdlg(prompt,dlg_title,num_lines,def);
%%%to get the two...
AH! now I understand. But there is another problem. With this code I have to set manually the values. But I want that dynamiclly, so that it knows what x_high and y_high is...
Do I have to calculate that first or can I get the values somewhere?
thanks a lot
sui
Hi!
thank you for your reply. But I don't understand your programming code and primarily I don't get the image I want. Maybe I did not explain my problem good enough.
I don't want to change the image itself, I want to change the units of the axes.
Right now the units of the axes are pixel I...
Hi everyone,
all images I have displayed yet have the same size as my matix. For example: I got a matrix 250x1000 then the units of my axes are also from 0 to 250 and from 0 to 1000. But I want to have another unit. I want to see the size of the image in millimeter. How can I manage that?
Hi,
probably a simple one again, but I haven´t found anything yet.
To display a simple error:
error ('too many arguments') alright that easy!
But I need a dynamic error message. I have a variable which I need to get displayed in the error message. E.g.
framenumber=56
and now I need something...
Hi,
I just started programming MatLab, so I still have basic problems.
I have 3 M-Files. One script which operates the two other function m-files and the two function m-files which seperate functions. In the first m- file I get a variable X in the end. But I don't save the variable. In the...