photo

Jonathan


Last seen: 7ヶ月 前 2011 年からアクティブ

Followers: 0   Following: 0

統計

All
  • Solver
  • Knowledgeable Level 1
  • First Answer

バッジを表示

Feeds

表示方法

質問


Unwanted editor behavior: whitespace only lines trimmed
I'm using MATLAB 2023a. Sometimes, when I have a line in an m-file with only whitespace then whitespace characters are removed f...

約1年 前 | 2 件の回答 | 3

2

回答

回答済み
pcolor
hand = pcolor(hadamard(20)) set(hand, 'linestyle', 'none')

約13年 前 | 2

回答済み
Functions with multiple variables
Ben, Here is a neat way of solving your problem. There are certainly more efficient methods. This was the least amount of c...

約13年 前 | 0

回答済み
Keep a variable in workspace when calling a function
The code below uses a persistent variable. The first time the function is run, the variable is given the value [] (the empty ma...

約13年 前 | 0

回答済み
How to use colormap for different bars.
See if this helps. y = [4.2; 4.6; 5]; %The data. s = [.3; .2; .6]; %The standard devi...

約13年 前 | 8

| 採用済み

回答済み
Matlab hermite interpolation
Try 'edit pchip'.

約13年 前 | 0

回答済み
Sphere into equal parts
If there are no restrictions on how to divide the sphere, then you can slice it like an orange.

約13年 前 | 0

回答済み
Plot axis limits
You can set the axis limits using ylim([290 420]) or xlim([290 420]).

約13年 前 | 0

回答済み
all possible permutations
You can use this method. It does not use cell arrays, which are conceptually convenient but rather inefficient. A = nchoosek...

約13年 前 | 0