Thorsten - MATLAB Central
photo

Thorsten


Universität Gießen

Last seen: 1日 前 2013 年からアクティブ

Followers: 0   Following: 0

統計

All
MATLAB AnswersCodyFrom 01/13 to 04/25Use left and right arrows to move selectionFrom 01/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 質問
1,493 回答

Cody

0 問題
30 解答

ランク
54
of 298,264

評判
3,556

コントリビューション
0 質問
1,493 回答

回答採用率
0.00%

獲得投票数
555

ランク
 of 20,554

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク
16,152
of 160,718

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

スコア
316

バッジ数
1

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

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

平均評価

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

平均いいねの数

  • First Review
  • 6 Month Streak
  • Thankful Level 1
  • Guiding Light
  • Revival Level 1
  • Knowledgeable Level 5
  • First Answer
  • Solver

バッジを表示

Feeds

表示方法

回答済み
How to plot circle with text aligned along its circumference
If your goal is to plot the text along the circle, you can use this code. Adopt the starting angle (135) and the angular offset ...

12日 前 | 1

回答済み
How can I shade my plot to the right of a given x value?
x = -10:0.1:10; f = @(x) -x.^2 + 100; % sample function finv = @(y) sqrt(-(y - 100)); % inverse of sample function y = f(x); ...

12日 前 | 0

回答済み
Figures resolution fadw away in PDF file
It is not possible to read eps in Matlab as an image. I would rewrite your code to store the simulation results in 120 mat files...

12日 前 | 0

| 採用済み

回答済み
Summing two vectors with NaNs
s = sum([A,B], 2, 'omitnan'); s(isnan(A) & isnan(B)) = nan;

12日 前 | 1

回答済み
replace NaN value without disturb or remove important peak
y = readmatrix('41679.2500000000.txt'); x = 1:numel(y); yi = interp1(x(~isnan(y)), y(~isnan(y)), x, 'linear', 'extrap'); plot...

13日 前 | 0

回答済み
How to extract high-quality image from MATLAB for my research article?
Print to a vector format like eps or pdf and you have an arbitrary fine resolution.

16日 前 | 0

回答済み
Spider Plot with Standard Deviation as shaded region
You can do it like this: I am not aware of a function, so you have to do it on your own. Note that this functions uses val...

19日 前 | 2

回答済み
Why some output show 0-by-1
It seems that vpasolve cannot solve the equation with the given input to it returns an empty symbol.

約1ヶ月 前 | 0

回答済み
Help Creating For Loop to Run Functions on Multiple Files
The code below displays every file in the present folder. Replace pwd with the name of your folder if you want to process a ...

約1ヶ月 前 | 0

| 採用済み

回答済み
submit m files for execution via the command line
From the command line matlab -nodisplay < myScript.m Put exit as the last command in myScript.m to terminate Matlab....

約1ヶ月 前 | 0

解決済み


MATLAB Basic: rounding
Do rounding near to zero Example: -8.8, answer -8 +8.1 answer 8

10ヶ月 前

解決済み


Solve a System of Linear Equations
*Example*: If a system of linear equations in _x&#8321_ and _x&#8322_ is: 2 _x&#8321;_ + _x&#8322;_ = 2 _x&#8321;...

4年以上 前

解決済み


Verify Law of Large Numbers
If a large number of fair N-sided dice are rolled, the average of the simulated rolls is likely to be close to the mean of 1,2,....

4年以上 前

解決済み


Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...

4年以上 前

解決済み


Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...

4年以上 前

解決済み


Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...

4年以上 前

回答済み
how can I edit a matrix and rename it at the same time?
You can do it like this: my_matrix = rand(4,9); edited_matrix = my_matrix; edited_matrix(:,8) = [2;4;6;1];

5年以上 前 | 0

回答済み
Different colours for arrows in quiver plot
Create a circular colormap: cmap = colormap(hsv(360)); In the loop: compute the angle and an index into the colormap from...

5年以上 前 | 1

| 採用済み

回答済み
how do i change subfunctions to a switch
switch question case 1 % code of function 1 case 2 % code of function 2 case 3 % code of function 3 otherwise ...

5年以上 前 | 0

| 採用済み

回答済み
Find the perfect overlay of 2 maps of points
You can maximize the number of perfect matches, that is the number of red points with zero distance to a blue point.

5年以上 前 | 0

回答済み
one two three four
Replicate B such that is is as long or longer than A, then cut it to the length of A; B = repmat(B, 1, ceil(numel(A)/numel(B)...

5年以上 前 | 0

| 採用済み

回答済み
Error using horzcat Dimensions of matrices being concatenated are not consistent.
You can only concatenate vectors horizontally if they have the same number of rows. But here you have 256 and 18 rows. sp this d...

5年以上 前 | 0

| 採用済み

回答済み
Text in while loop creating matrix
You have to use cell arrays if you want to mix text and numbers. And fprintf returns the number of printed bytes, so you directl...

6年弱 前 | 0

回答済み
could anyone help me how to check the idx position containing value is not equal to zero
To check if any value of idx is zero, you can use any(idx == 0)

6年弱 前 | 0

回答済み
Ich brauche Hilfe mit der Matrix
1:1 umgesetzt muss es doch 1 statt l heißen: verbraucher_AC=everything(s,1); leistung_AC=Leistungswert(s,1);

6年弱 前 | 1

| 採用済み

回答済み
Rearrange halves of yaxis in graph
i = find(x == 1.25); y = y([i+1:end, 1:i]);

6年弱 前 | 1

回答済み
How can I generate random number between 1 and 10, and at the same time I want to exclude number 3 & 6?
x = setdiff(1:10, [3, 6]); r = x(randi(numel(x)));

約6年 前 | 4

| 採用済み

さらに読み込む