I wanna ask if anyone can help , I have a non linear graph , which I want to make it linear can I do it using Matlab
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
my graph looks like a random graph , it's totally non linear , so how can I make it linear for processing it .
2 comentarios
  William Rose
      
 el 3 de Jun. de 2022
				@Image Analyst makes me laugh!
@Abderezak, you will get good help here, but you will need to be more specific.
Respuestas (2)
  Sam Chak
      
      
 el 3 de Jun. de 2022
        Since you didn't provide the data for the random-looking graph, this maybe not what you are looking for, but it is a very simple example for turning a nonlinear graph into a linear one.
x = -10:0.1:10;
y = x.^2;
X = log(x);
Y = 2*X;
subplot(2,1,1)
plot(x, y, 'linewidth', 1.5)
grid on
xlabel('x')
ylabel('y')
title('y = x^2')
subplot(2,1,2)
plot(X, Y, 'linewidth', 1.5)
grid on
xlabel('log(x)')
ylabel('log(y)')
title('log(y) = 2*log(x)')
0 comentarios
Ver también
Categorías
				Más información sobre Spline Postprocessing en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




