Vaclav Rimal - MATLAB Central
photo

Vaclav Rimal


Last seen: 5年弱 前 2013 年からアクティブ

Followers: 0   Following: 0

統計

All
MATLAB AnswersCodyZoom OutFrom 12/13 to 04/25Use left and right arrows to move selectionFrom 12/13Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 質問
7 回答

Cody

0 問題
4 解答

ランク
3,500
of 297,922

評判
16

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

回答採用率
0.00%

獲得投票数
2

ランク
 of 20,504

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク
60,275
of 159,878

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

スコア
50

バッジ数
1

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

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

平均評価

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

平均いいねの数

  • Knowledgeable Level 2
  • First Answer
  • Solver

バッジを表示

Feeds

表示方法

回答済み
How to read 3 values in row of 3 columns as 1
Suppose your two matrices you want to combine are: A=[1 30 31;33 1071 1072;35 1079 1077]; B=[4501 4502 4503;4568 5287 52...

8年以上 前 | 0

回答済み
Standardisation about zero mean
Given that your original matrix is Aorig, do the following: Anew = Aorig - ones(size(Aorig,1),1)*mean(Aorig); Note that ...

8年以上 前 | 0

解決済み


Is my wife right?
Regardless of input, output the string 'yes'.

約9年 前

解決済み


Free passes for everyone!
_Simply return the name of the coolest numerical computation software ever_ *Extra reward* (get a _freepass_): As an addit...

約9年 前

解決済み


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

約9年 前

解決済み


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

約9年 前

回答済み
Undefined function or variable 'f'. Error in Pivotare (line 13) f := proc(b, n, m) WHAT TO DO ?
You cannot nest a function definition in the middle of a code. Instead, place the definition of your function proc in the end of...

約9年 前 | 0

| 採用済み

回答済み
How to solve a threedimensional integral of a nested function?
First, I suppose ther should be g(x,y,z) instead of g in the definition of function f. I would solve this by running trapz th...

11年以上 前 | 0

回答済み
Limiting vectors to a certain number of rows
I don't understand exactly what you are asking, bur suppose you have a matrix A and want to perform a function func on it. ...

11年以上 前 | 0

回答済み
why when I use mvrnd to generate random vectors from a multivariate normal I always get small numbers in absolute value ?
The width of the distribution is ruled by the diagonal elements of sigma. If you want larger absolute values, try scaling sigma,...

11年以上 前 | 0

| 採用済み

回答済み
Passing Matrix using call by reference
To really take the advantage of handle class, you would need to create your own class based on the class handle. Create a file c...

11年以上 前 | 2

| 採用済み