문제를 풀었습니다


Too mean-spirited
Find the mean of each consecutive pair of numbers in the input row vector. For example, x=[1 2 3] ----> y = [1.5 2.5] x=[1...

14년 초과 전

문제를 풀었습니다


radius of a spherical planet
you just measured its surface area, that is the input.

14년 초과 전

문제를 풀었습니다


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

14년 초과 전

문제를 풀었습니다


Pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...

14년 초과 전

문제를 풀었습니다


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

14년 초과 전

문제를 풀었습니다


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

14년 초과 전

문제를 풀었습니다


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

14년 초과 전

문제를 풀었습니다


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

14년 초과 전

문제를 풀었습니다


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

14년 초과 전

문제를 풀었습니다


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

14년 초과 전

문제를 풀었습니다


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

14년 초과 전

문제를 풀었습니다


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

14년 초과 전

문제를 풀었습니다


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

14년 초과 전

문제를 풀었습니다


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

14년 초과 전

답변 있음
Jpeg text rendering when saving.
Try <http://www.mathworks.com/matlabcentral/fileexchange/23629 export_fig> on the file exchange.

14년 초과 전 | 0

답변 있음
Copying and Pasting 3-D Plots
<http://www.mathworks.com/matlabcentral/answers/21962-export-figure-to-microsoft-outlook See this question>.

14년 초과 전 | 0

답변 있음
OpenGL and print
To get transparency in vector graphics output, export your figure to an <http://www.mathworks.com/matlabcentral/fileexchange/740...

14년 초과 전 | 0

답변 있음
Save a figure to PDF or EPS with non-standard fonts
The file exchange submission <http://www.mathworks.com/matlabcentral/fileexchange/23629 export_fig> now supports font correcting...

14년 초과 전 | 0

질문


Save a figure to PDF or EPS with non-standard fonts
If I generate a figure using some fancy fonts, for example like this: plot(rand(3)); set(gca, 'FontName', 'Georgia'); ...

14년 초과 전 | 답변 수: 5 | 6

5

답변

답변 있음
Print specific figure in GUI
The <http://www.mathworks.com/matlabcentral/fileexchange/23629 export_fig> package contains a function called isolate_axes. You ...

14년 초과 전 | 2

답변 있음
Export figure to Microsoft Outlook
This code will copy a figure to the clipboard as an image: imclipboard('copy', export_fig()); Both <http://www.mathworks.com...

14년 초과 전 | 4

| 수락됨

답변 있음
Transparent background for figures
You can edit the eps file generated by print, and remove the line which creates the background rectangle, thus making the backgr...

14년 초과 전 | 6

| 수락됨

답변 있음
What is your favorite way to export figure for use in LaTeX?
I create the graph or image in a MATLAB figure on screen exactly as I want it to appear in the paper. Then I save the figure as ...

14년 초과 전 | 0

답변 있음
Multiple Figures to PDF's
<http://www.mathworks.com/matlabcentral/fileexchange/23629 Export_fig> has an -append option which you can use to save multiple ...

14년 초과 전 | 7

답변 있음
matlab cannot save my figure
Instead of saveas, use: hgsave(1, ['C:\users\lefou\desktop\back/' jd '/' Outputname '.fig'], '-v7.3'); From the documentatio...

14년 초과 전 | 1

| 수락됨

답변 있음
Saving an image with no gui
Use print instead of saveas.

거의 15년 전 | 0

답변 있음
startup.m problem
Since you call startup_mtex from your startup file it adds mtex to the MATLAB path on startup. You therefore don't need to add i...

거의 15년 전 | 0

답변 있음
Line 129 in saveas function is slow!
If the question were instead "How can I make saveas faster?", I'd say - Change line 129 to: if ~isempty(format) && ~isem...

거의 15년 전 | 1

답변 있음
How to save a MATLAB graphic in a right size .pdf?
<http://www.mathworks.com/matlabcentral/fileexchange/23629 Export_fig> saves the figure at the dimensions it appears at on scree...

거의 15년 전 | 3

답변 있음
Printing Axes
With <http://www.mathworks.com/matlabcentral/fileexchange/23629-exportfig export_fig> you can specify a list of handles of the a...

거의 15년 전 | 2

| 수락됨

더 보기