Community Profile

photo

Marcos Perez


Active since 2015

Followers: 0   Following: 0

Statistics

  • Thankful Level 3

View badges

Feeds

View by

Question


HOW CAN I MODIFY THE PATH WHERE MATLAB SAVE A FILE USING THE FUNCTION 'PRINT'?
h = figure; plot(1:4,5:8); path=uigetdir('C:\'); print(h,'-dpdf',report,'-r600'); %I want to save this file 'report.pdf' ...

8 years ago | 1 answer | 0

1

answer

Question


How can I get a better quality of a PDF Document generated from the function 'print'?
%when I use the function print, matlab generate a PDF Document. But the quality of this one is really poor. I want to get a be...

8 years ago | 0 answers | 0

0

answers

Question


How can I improve the quality of a PDF DOCUMENT using the function 'print'?
%in the function file Calc_report.m, I want to generate a PDF Document (final report) using the function 'print'. However the qu...

8 years ago | 0 answers | 0

0

answers

Question


How can I created a PDF file (report) using the results of a MATLAB GUI?
% I attached 2 files (MATLAB GUI).. when the user imput the values of mass and volume to get density.. then I want to created a ...

8 years ago | 0 answers | 0

0

answers

Question


HOW CAN I GET THE VALUE OF A VARIABLE OF A FUNCTION FILE TO USE IT IN OTHER FUNCTION FILE?
%I attached the files a created.. I want to use the value of the variable 'density' to use it in the file report1.m

8 years ago | 1 answer | 0

1

answer

Question


How can I change de origin of a particular vector in a compass
O=3.5355 + 3.5355i; OI=-3.5355 - 3.5355i; R=1.6633 + 7.8252i; P=R-O; %I want to put the origin of 'P' vector at the e...

9 years ago | 0 answers | 0

0

answers

Question


How can I fill with color a odd flower in a cartesian o polar coordinates?
% In rectangular coordinates theta=linspace(0,2*pi,200); radius=cos(5*theta); x=radius.*(cos(theta)); y=radius.*(s...

9 years ago | 1 answer | 1

1

answer

Question


how can I make a colored 2D-surface in a polar plot? I want to give some labels to this polar... It is possible?
clc c=input('How many blades are there in the blower?:'); t = 0:.01:2*pi; if mod(c,2)==1 polar(t,(cos((c*t))),'-r'...

9 years ago | 2 answers | 0

2

answers

Question


When I plot a polar.. How can I put the center of the 'marker' inside the 'circle' of the polar (not in the patch edge)?
c=20; b=zeros(1,c) a=zeros(1,c) for i=1:c b(i)=(2*pi)*((i-1)/c) end for j=1:c a(j)=1 end length(b) length(a)...

9 years ago | 1 answer | 0

1

answer

Question


Why does MATLAB resize a polar when I rotate it 45°? How can I get the same size when the polar has a 'View' of 0º?
h=polar(1,1,'*r') set(gca,'View',[-45 90])

9 years ago | 1 answer | 0

1

answer