photo

Thorsten


Universität Gießen

Last seen: 3 meses hace Con actividad desde 2013

Followers: 0   Following: 0

Mensaje

Estadística

All
MATLAB Answers

0 Preguntas
1.498 Respuestas

Cody

0 Problemas
30 Soluciones

CLASIFICACIÓN
54
of 300.352

REPUTACIÓN
3.564

CONTRIBUCIONES
0 Preguntas
1.498 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
559

CLASIFICACIÓN
 of 20.928

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
16.982
of 168.212

CONTRIBUCIONES
0 Problemas
30 Soluciones

PUNTUACIÓN
316

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

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

Ver insignias

Feeds

Ver por

Respondida
closed countour around a given point
The idea is to first convert the counter point data into a different data structure where the points of each contour can be acce...

6 meses hace | 0

Respondida
Generate n random numbers between 0.1 and 0.9 without repetition
This generates No_pts distinct random points [x, y] between lower_limit and higher_limit, excluding the point [0.5, 0.5]: %defi...

6 meses hace | 0

Respondida
Find the range of duplicates in a sorted element
If you are just looking for pairs, you can use b = sort(a); startloc = find(diff(b) == 0); endloc = startloc + 1;

6 meses hace | 0

Respondida
3D bar plot, does not show solid bars
Try bar3(log(errdata(:,:,2)))

6 meses hace | 1

Respondida
Breaking legend into several parts and moving parts as necessary to prevent overlapping graphed data.
You can check if the legend covers plotted data using the function proposed here: https://de.mathworks.com/matlabcentral/answers...

6 meses hace | 0

Respondida
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 ...

7 meses hace | 2

Respondida
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); ...

7 meses hace | 0

Respondida
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...

7 meses hace | 0

| aceptada

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

7 meses hace | 1

Respondida
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...

7 meses hace | 0

Respondida
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.

7 meses hace | 0

Respondida
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...

7 meses hace | 2

Respondida
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.

7 meses hace | 0

Respondida
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 ...

7 meses hace | 0

| aceptada

Respondida
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....

7 meses hace | 0

Respondida
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];

casi 6 años hace | 0

Respondida
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...

casi 6 años hace | 1

| aceptada

Respondida
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 ...

casi 6 años hace | 0

| aceptada

Respondida
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.

casi 6 años hace | 0

Respondida
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)...

casi 6 años hace | 0

| aceptada

Respondida
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...

casi 6 años hace | 0

| aceptada

Respondida
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...

más de 6 años hace | 0

Respondida
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)

más de 6 años hace | 0

Respondida
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);

más de 6 años hace | 1

| aceptada

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

más de 6 años hace | 1

Respondida
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)));

más de 6 años hace | 4

| aceptada

Respondida
using 2 indexs for loop
for i=1:length(mHome) for k=1:2:size(mHome,2)-1 output1(i,k)=pdist([mHome(i,k:k+1);mBall(i,1:2)]); end end

más de 6 años hace | 1

| aceptada

Cargar más