Answered
What are the thought processes that go on when you are trying to solve a MATLAB problem?
I make very heavy use of the debugger, in combination with the command line to try out syntax and options. I also often like to...

nästan 5 år ago | 1

| accepted

Answered
Accesing structure using a function
total = campus.( building ).( year ).( var ); should work fine, assuming campus is your struct and that is a branch of the stru...

nästan 5 år ago | 0

| accepted

Answered
how to get the RGB number from colorbar
colourmap = colormap( hAxes ); where hAxes is the axes handle. gca if you really must! You can then interpolate it to make it...

ungefär 5 år ago | 0

Answered
How can I change variables within a GUI to make plot using the data from user input?
Simplest option is simply to create variables g = []; valzero = []; (or initialise them to a default value) at the top of y...

ungefär 5 år ago | 0

Answered
Accept a specific type of file Matlab
doc uigetfile gives examples of specifying filters for file type. You can use a generic uigetfile and a check like that after ...

ungefär 5 år ago | 0

Answered
Find the index of given value in an array
val = 2.5; idxAboveVal = find( array >= val, 1 ); idxFract = idxAboveVal - ( array( idxAboveVal ) - val ) / ( array( idxAboveV...

ungefär 5 år ago | 1

Answered
Call to Subplot is Adding Axis to Current Figure
Yes, that does seem a slightly odd thing to have in the startup file and is indeed the cause of this behaviour (I just tested wi...

ungefär 5 år ago | 0

| accepted

Answered
plz i need help to make this , thank u
[~, idx] = min( MA ); resA = A(:,idx);

ungefär 5 år ago | 0

| accepted

Answered
Random order, but equally appearance
doc randperm

ungefär 5 år ago | 1

| accepted

Answered
How to recognize if there is in a character a point '.'?
What is wrong with simply xx == '.' if xx is a char array rather than a string as it seems to be?

ungefär 5 år ago | 0

Answered
What does 'Colormap' do to the image with double/float pixels?
Data is linearly binned into however many bins/elements your colourmap has and that colour applied. e.g. if your data is 0-1 an...

ungefär 5 år ago | 0

| accepted

Answered
Writing a Matrix 6x6 in one line
A = 1:36; I may be misunderstanding the question, but if not then it would seem to be that simple? or A = A(:)'; if you are ...

ungefär 5 år ago | 0

| accepted

Answered
Feature Request: Refactoring tool
This is still such a huge frustration all the way into R2019a. Even things that should be so simple can take on epic proportion...

ungefär 5 år ago | 4

Answered
Undefined operator '+' for input arguments of type 'function_handle'.
A2 = V2a + U2(t) ; would be a function call. You only use the @(t) when defining a function handle, not when actually calling...

ungefär 5 år ago | 0

Answered
[DISCONTINUED] MATLAB Answers Wish-list #4 (and bug reports)
One or two things with respect to notification preferences and Activity Feed that I would like: Having a preference to not auto...

ungefär 5 år ago | 4

Answered
Ylim is not working
Use explicit axes handles for plotting instructions and instructions like hold, ylim, xlim. i.e. hAxes(1) = subplot(3,1,1); sc...

ungefär 5 år ago | 2

| accepted

Answered
How to set the x-aixs when plotting with certain row and column of matrix
I'm surprised you can see anything useful on that using plot rather than an image, but the plot function takes multiple argument...

ungefär 5 år ago | 0

| accepted

Answered
Undefined variable or class error
The variable in your mat file is called NEWSST, not NEWSST_2015. It is usually better though to load a mat file into a struct a...

ungefär 5 år ago | 0

| accepted

Answered
How to hide a figure instead of deleting it?
If you over-ride the CloseRequestFcn you can have it do whatever you tell it. In general you should always have this function c...

ungefär 5 år ago | 1

| accepted

Answered
Given an instance of a class (without knowing class name), how to call the constructor?
Since your class doesn't inherit from handle the assignment operator will give you a copy of the correct class. However, this w...

ungefär 5 år ago | 0

Answered
Create a specular colormap
figure; imagesc( rand(100) - 0.5 ); % Random data centred on 0 baseCmap = hot( 256 ); cmap = [ flip( baseCmap(2:end,:) ); base...

ungefär 5 år ago | 1

| accepted

Answered
calculate the mean square error
Calculate the error, square it and calculate the mean! mean( ( a - b ).^2 );

ungefär 5 år ago | 0

Answered
How to keep for loop from over writing variables?
You aren't indexing anything on the left-hand side of all those lines, which is the side where things are stored/overwritten. e....

ungefär 5 år ago | 0

| accepted

Answered
I have array with different length I would put them in one matrix
t = [t1, t2, t3]; will concatenate them. Obviously you can't put them together as individual columns or rows in a numeric ma...

ungefär 5 år ago | 0

Answered
[DISCONTINUED] Wish-list for MATLAB Answer sections.
Do we have to have the 'This website uses cookies...' message at the bottom of the Matlab Answers website every single day when ...

ungefär 5 år ago | 1

Answered
Function to fill an array given conditions.
validIdx = pressure >= minVal & pressure < maxVal; datenew = date( validIdx ); phnew = ph( validIdx ); should do this for y...

ungefär 5 år ago | 0

| accepted

Answered
Using class object data within another function
Folder_creator_v3( val ); is required to pass val in as an argument to your function, otherwise you are just calling it with no...

ungefär 5 år ago | 0

| accepted

Answered
how can i change x to (x+h)?
It's the same function definition, you just pass in x + h instead of x assuming you have x and h defined at the point you ca...

ungefär 5 år ago | 0

Answered
Find the max in a graph with multiple curves
b=0:5:30; li=(((b'.^3)+1).*(l+0.08*b'))./(((b'.^3)+1)-(0.035.*(l+0.08*b'))); cp=c1.*((c2./li)-c3.*b'-c4).*exp(-c5./li)+c6.*l; ...

ungefär 5 år ago | 0

Answered
reducing resolution of an image
I have no idea what MP means in this context, but doc imresize will resize an image.

ungefär 5 år ago | 0

Load more