I need help using the quad function
    5 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    Bob
 le 14 Déc 2014
  
    
    
    
    
    Réponse apportée : Star Strider
      
      
 le 14 Déc 2014
            When using the quad function to integrate, I am getting the error:
FUN must be a function, a valid string expression, or an inline function object.
I am trying to integrate the polyval.
Here is my code. How do I fix it to integrate the function and avoid this error message?
function [ A ] = func( x )
clear all clc
A=5;
B=25;
x=[0 10];
y=[A B];
p=polyfit(x,y,1);
func=polyval(p,x);
q=quad(func,0,10)
end
0 commentaires
Réponse acceptée
  Star Strider
      
      
 le 14 Déc 2014
        To integrate a vector (or matrix in one of its dimensions), use the trapz function. The quad, integral, and related functions integrate functions.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Numerical Integration and Differentiation dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

