답변 있음
Use a variable with a file extenstion to load files
You can use |sprintf| or |num2str|. |num2str| is easier to use, but |sprintf| gives many more options including leading zeros. ...

거의 12년 전 | 0

| 수락됨

답변 있음
frenet frame plot with arrows
http://www.mathworks.com/matlabcentral/fileexchange/278-arrow-m

거의 12년 전 | 0

제출됨


threepoints2planez
Given three points in space, get coefficients of a plane in the form z = slopex*x + slopey*y + C.

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

5.0 / 5

답변 있음
how to get the values from netcdf to ascii format through matlab?
Check out the names of the variables with |ncdisp('data.nc')| and if one of the variables is |lat|, you can load it with l...

거의 12년 전 | 0

| 수락됨

답변 있음
different colour combinations in matlab
Use |scatter|. The syntax is |scatter(x,y,Size,Colors)|. |Size| is the size of the markers and |Colors| can be 20 rgb values a...

거의 12년 전 | 0

답변 있음
Blank white lines in eps exported surf plots.
Whenever weird things happen in figures, my first line of defense is trying different renderers. Try all three: set(gcf,'r...

거의 12년 전 | 0

답변 있음
how to label lines on a graph
<http://www.mathworks.com/matlabcentral/fileexchange/47421-label/content/label_documentation/html/label_documentation.html |labe...

거의 12년 전 | 8

답변 있음
How can I easily mark data points in a plot?
Sara's solution seems valid, as does your suggestion of |text|. Consider also |annotation| or <http://www.mathworks.com/matlabc...

거의 12년 전 | 1

답변 있음
Legend and graph doesn't have the same color
You can link labels directly to their data with <http://www.mathworks.com/matlabcentral/fileexchange/47421-label/content/label_d...

대략 12년 전 | 0

답변 있음
how can i draw a circle?
Here's a simple solution: http://www.mathworks.com/matlabcentral/fileexchange/45952-circle-plotter

대략 12년 전 | 0

답변 있음
Please help me with my loop. I can´t get my loop to work, i am not so skilled in MatLab and I have no problem with getting my results but with this loop working my code will be much shorter and easier to read for my supervisor.
For readability, spl calculations may be performed with <http://www.mathworks.com/matlabcentral/fileexchange/35876-sound-pressur...

대략 12년 전 | 0

제출됨


Unit Converters
Convert units of pressure, length, time, force, mass, accel., temp, speed, frequency, area, & more!

대략 12년 전 | 다운로드 수: 1 |

4.5 / 5
Thumbnail

질문


Load .mat file variables without overwriting current variables of the same name
I have variables |x| and |y| in my workspace. Now I'd like to load a .mat file that contains variables named |x| and |y|. For ...

대략 12년 전 | 답변 수: 1 | 0

1

답변

답변 있음
How to create a legend for a variable used as for loop iteration?
I am having trouble understanding your question. Perhaps <http://www.mathworks.com/matlabcentral/fileexchange/47228-legappend/c...

대략 12년 전 | 1

답변 있음
A guide to Tags
* "pullingteeth": When the asker does not provide enough details for readers to answer the question, then only divulges small bi...

대략 12년 전 | 0

답변 있음
setting coefficients of particular frequency components to zero
fs = 10; % Hz sampling rate (I made this up, you need to fix it) filteredSignal = bandstop_butterworth(signal_data,[.2 ...

대략 12년 전 | 0

답변 있음
for finding peak. i tried findpeaks(). but its not working
This is popular: http://www.mathworks.com/matlabcentral/fileexchange/25500-peakfinder

대략 12년 전 | 0

답변 있음
I have some force data and corresponding time data. How to remove vibration signal from force data?
You could do a <http://www.mathworks.com/matlabcentral/fileexchange/38584-butterworth-filters bandstop butterworth> filter to re...

대략 12년 전 | 0

답변 있음
Placing a Title on Bounding Box
Instead of the |title| command, consider using |text|. You can pin the text to some x,y location, then align the text around th...

대략 12년 전 | 0

| 수락됨

답변 있음
polar to cartesian conversion
The x and y values may very well be the dimensions of the matrix, so from 1 to 742 in one direction and 1 to 400 in the other di...

대략 12년 전 | 0

제출됨


nantight
Sets axis limits to the range of finite data.

대략 12년 전 | 다운로드 수: 1 |

0.0 / 5

답변 있음
Shading to indicate a condition on a time series plot
Alternatively, you could use <http://www.mathworks.com/matlabcentral/fileexchange/43090-hfill-and-vfill/content/hfill_and_vfill/...

대략 12년 전 | 0

답변 있음
suppress command line outputs when publishing to html
I figured out a solution, publish('myfile.m','maxOutputLines',0) However, this suppresses all output for the whole file...

대략 12년 전 | 1

| 수락됨

질문


suppress command line outputs when publishing to html
I'm publishing an example file and one section looks like this %% An example of a pcolor image h = pcolor(x,y,z); s...

대략 12년 전 | 답변 수: 2 | 0

2

답변

답변 있음
How can I combine two gray colormap images in different colors?
You could make two color maps with <http://www.mathworks.com/matlabcentral/fileexchange/46874-rgbmap-color-maps |rgbmap|> like t...

대략 12년 전 | 0

답변 있음
Weird results when using writeVideo with opengl
If you're using |frame = getframe(gcf)| , you might try |frame = <http://www.mathworks.com/matlabcentral/fileexchange/23629-expo...

대략 12년 전 | 0

제출됨


coriolisf
Returns Coriolis parameter as a function of latitude.

대략 12년 전 | 다운로드 수: 4 |

0.0 / 5

답변 있음
Plotting winds with quiver functions
If you want barbs, there's also these FEX submissions: http://www.mathworks.com/matlabcentral/fileexchange/8572-barbs htt...

대략 12년 전 | 0

답변 있음
Quiverm arrowhead at the origin`
<http://www.mathworks.com/matlabcentral/fileexchange/47314 |quivermc|> can also do this with the tag |'arrowstyle','tip'|. This ...

대략 12년 전 | 0

답변 있음
Error with quiverm function
Matlab's |quiverm| function mixes up |u| and |v|. It also scales the vectors in a strange way. Andrew Roberts' <http://www.mat...

대략 12년 전 | 0

더 보기