
warnerchang
Never be afraid to try something new
MATLAB
Spoken Languages:
English
Statistics
9 質問
0 回答
1 問題
547 解答
ランク
17,219
of 258,294
評価
2
貢献
9 質問
0 回答
回答採用率
88.89%
獲得投票数
2
ランク
142
of 110,415
貢献
1 問題
547 解答
スコア
7,005
バッジ数
32
貢献
0 投稿
貢献
0 パブリック チャネル
平均評価
貢献
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
質問
Limit angle in [-90,90] degree
As I was using ode45 to solve ODEs, I do not know to limit the result in [-90,90] degree. Anyone may provide some help?
26日 前 | 1 件の回答 | 0
1
回答質問
label is not at the center of axes
when I was plotting a 3D line, I tried to use xlabel/ylabel to make a axis label. However, I found these labels are not at the c...
約2ヶ月 前 | 1 件の回答 | 0
1
回答質問
how can I change lighting using codes?
Now, I plot a figure, however, it is dark. And I use the button to change the lighting, I am wondering whether there exists a me...
約2ヶ月 前 | 1 件の回答 | 0
1
回答質問
How to define a colormap easily
I tried to define a colormap, however it is rather difficult, because I have to choose a value and then I see what the color it ...
約2ヶ月 前 | 2 件の回答 | 0
2
回答質問
what is the time complexity of function 'reshape'
anyone knows what is the time complexity of function 'reshape'?
約2ヶ月 前 | 2 件の回答 | 0
2
回答質問
why use limit function goes wrong
syms x f=(2/pi*atan(x))^x; limit(f,x,inf,'right') Prompt:Inconsistent limit direction. however,I tried to transform the f...
約2ヶ月 前 | 1 件の回答 | 0
1
回答質問
How to adjust the brightness of an image in YCbCr color space
anyone know how to adjust the brightness of an image in YCbCr color space?
約2ヶ月 前 | 1 件の回答 | 0
1
回答質問
Why two methods give different results, and which is correct?
I use ode15i and ode45 to solve an implicit function, however two methods give different results, which is correct? clear clc ...
約2ヶ月 前 | 1 件の回答 | 0
1
回答質問
why it will go wrong using 'cell'?
Recently, I ran two codes as follow: a={[],[]};a{1}(a{1}==3)=[]; % it will go wrong b=cell(1,2);b{1}(b{1}==3)=[];
約2ヶ月 前 | 1 件の回答 | 2
1
回答解決済み
文字列の最初と最後の文字だけ抜き出しましょう。
文字列の最初と最後の文字をつなげて返すような関数を作成しましょう。 もし文字が一つしかない場合、その文字は最初と最後の文字のため、関数はその文字を二回返すようにしておきましょう。 例: stringfirstandlast('borin...
5ヶ月 前
解決済み
対称で、n*2n のサイズの行列を作成しましょう
サイズが n*2n の "mirror" 行列(対称行列)を作成しましょう。 例: n=2 の場合、以下のような出力を返します。 m = [ 1 2 2 1 1 2 2 1 ] n = 3 の場合、以下のよう...
5ヶ月 前
解決済み
英語の文章内の母音を取り除くコードを書きましょう。
与えられた英語の文章内の母音を取り除きましょう。 例: 入力 s1 が 'Jack and Jill went up the hill' の場合、 出力 s2 は 'Jck nd Jll wnt p th hll' * (英語版) ...
5ヶ月 前
解決済み
テレビのサイズを求めてみよう
あなたは電気屋で働いています。 あなたの電気屋にテレビを買いに来たお客さんに「何インチのテレビを買いたいのか」と質問したところ、対角線の情報しかわからないと言われてしまいました。 しかし、テレビのインチを知るには、幅と高さの情報が必要です。 ...
5ヶ月 前