Statistiques
10 Questions
0 Réponses
RANG
36 244
of 300 863
RÉPUTATION
1
CONTRIBUTIONS
10 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
50.0%
VOTES REÇUS
1
RANG
of 21 100
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 171 413
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
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' ...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
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...
plus de 10 ans il y a | 1 réponse | 0
0
réponseQuestion
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...
plus de 10 ans il y a | 1 réponse | 0
0
réponseQuestion
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 ...
plus de 10 ans il y a | 1 réponse | 0
0
réponseQuestion
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
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
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...
plus de 10 ans il y a | 1 réponse | 0
0
réponseQuestion
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...
plus de 10 ans il y a | 2 réponses | 1
2
réponsesQuestion
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') else pola...
plus de 10 ans il y a | 3 réponses | 0
3
réponsesQuestion
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)...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
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])
plus de 10 ans il y a | 1 réponse | 0
