photo

Thomas


2013 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

3 質問
10 回答

ランク
2,322
of 297,503

評判
27

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

回答採用率
33.33%

獲得投票数
9

ランク
 of 20,449

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 159,017

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

スコア
0

バッジ数
0

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

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

平均評価

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

平均いいねの数

  • First Review
  • Knowledgeable Level 2
  • First Answer

バッジを表示

Feeds

表示方法

回答済み
diff gives back one less valor
It cannot give 6 elements since it calculates differences between successive elements and for 6 input values there are only diff...

11年以上 前 | 0

質問


Howto clip a scatter plot to axes with limits
Hi, i have some scatter data and i'd like to scatterplot it with user defined *axes limits* and *"equal axes"* . However, if ...

11年以上 前 | 2 件の回答 | 0

2

回答

回答済み
Varying input variables in a GUI
I dont know much about sliders, but can't you simply plot a surface plot of f(b,e)? Like [grid_e grid_b] = meshgrid(-.3...

12年弱 前 | 0

回答済み
Read csv file and remove some strings
Thats easy - don't. Just truncate the matrix: A = A(:,1:2) e.g. extract all rows and columns 1-2.

12年弱 前 | 1

回答済み
how can i calculate or track the free space in the image buffer?
There is a function called "memory". See the docs.

12年弱 前 | 0

回答済み
How to color an area at plot surface...
I found a better way... try x=1:10; f=x.^2; g=x.^2+1; patch([x x(end:-1:1)], [f g(end:-1:1)],'y') This sets up x=1....

12年弱 前 | 1

| 採用済み

質問


Symbolic expressions: abs(x^(1/3)) =?= abs(x)^(1/3)
I have Matlab 2011b and when i do this: >> x = sym('x') x = x >> abs(x^(1/3)) ans = abs(x)^(1/3) the...

12年弱 前 | 2 件の回答 | 2

2

回答

回答済み
Multiple trisurf plots with different colours
You can set your color range to manual to prevent auto-scaling: caxis manual after the first before the second surf. How...

12年弱 前 | 0

回答済み
Saving values in parfor loops
I assume it doesn't really crash with an error but it takes close to forever to output that many files...(?) I don't know a...

12年弱 前 | 0

| 採用済み

回答済み
How to color an area at plot surface...
You could use sth like area(g); hold on; area(f); and then select f's fill color to be the backgroud color. Of...

12年弱 前 | 0

回答済み
why do i get an error while using arcsin(x) function?
It is asin, not arcsin.

12年弱 前 | 4

| 採用済み

質問


How to tell Matlab to give real cube roots instead of complex ones?
I am using symbolic math toolbox (Matlab2011b) to do some geometric computations to derive an expression for a geometric length....

12年弱 前 | 5 件の回答 | 1

5

回答