photo

Marcos Perez


2015 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

10 質問
0 回答

ランク
36,244
of 300,799

評判
1

コントリビューション
10 質問
0 回答

回答採用率
50.0%

獲得投票数
1

ランク
 of 21,092

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 171,134

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 3

バッジを表示

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' ...

10年以上 前 | 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...

10年以上 前 | 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...

10年以上 前 | 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 ...

10年以上 前 | 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

10年以上 前 | 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...

10年以上 前 | 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...

10年以上 前 | 2 件の回答 | 1

2

回答

質問


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...

10年以上 前 | 3 件の回答 | 0

3

回答

質問


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)...

10年以上 前 | 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])

10年以上 前 | 1 件の回答 | 0

1

回答