Marcos Perez
2015년부터 활동
Followers: 0 Following: 0
Feeds
질문
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' ...
9년 초과 전 | 답변 수: 1 | 0
1
답변질문
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...
9년 초과 전 | 답변 수: 0 | 0
0
답변질문
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...
9년 초과 전 | 답변 수: 0 | 0
0
답변질문
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 ...
9년 초과 전 | 답변 수: 0 | 0
0
답변질문
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
9년 초과 전 | 답변 수: 1 | 0
1
답변질문
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년 초과 전 | 답변 수: 0 | 0
0
답변질문
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년 초과 전 | 답변 수: 1 | 1
1
답변질문
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년 초과 전 | 답변 수: 2 | 0
2
답변질문
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년 초과 전 | 답변 수: 1 | 0
1
답변질문
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년 초과 전 | 답변 수: 1 | 0