Undefined function or variable in MATLAB

7 visualizaciones (últimos 30 días)
Joshua
Joshua el 19 de Jul. de 2013
I have this function saved as element.m Whenever I call on it I say element(Hydrogen) I am trying to get it to display the name, symbol, atomic number, category, ... But it keeps saying Undefined function or variable 'Hydrogen' I don't understand why its doing this.
function [Name, Symbol, Atomic_Number, Category, Proton, Neutron, Electron]=element(e)
%Inputs:
%e - 'Hydrogen' ;
%Outputs:
%Name
%Symbol
%Atomic_Number
%Category
%Proton
%Neutron
%Electron
e=[Hydrogen Helium]
if e=='Hydrogen'
Name='Hydrogen';
Symbol='H';
Atomic_Number='1';
Category='Nonmetal';
Proton='1';
Neutron='';
Electron='1';
elseif e==Helium
Name='Helium'
Symbol='H'
Atomic_Number='1'
Category='Noble Gas'
Proton='4'
Neutron='2'
Electron='4'
end
end

Respuesta aceptada

per isakson
per isakson el 19 de Jul. de 2013
What is e=[Hydrogen Helium] intended to do?
  8 comentarios
per isakson
per isakson el 19 de Jul. de 2013
You have to make a call like
[Name,Symbol,Atomic_Number,Category,Proton,Neutron,Electron]=element('Hydrogen')
Joshua
Joshua el 19 de Jul. de 2013
Thanks it worked.

Iniciar sesión para comentar.

Más respuestas (2)

Azzi Abdelmalek
Azzi Abdelmalek el 19 de Jul. de 2013
The variable Hydrogene is not defined in your code, how Matlab will recognize it?
  2 comentarios
Joshua
Joshua el 19 de Jul. de 2013
Editada: Joshua el 19 de Jul. de 2013
I am kind of new to MATLAB, how exactly would i define it if I wanted it to give me the Name, Category, Symbol ...
Joshua
Joshua el 19 de Jul. de 2013
Thanks it worked.

Iniciar sesión para comentar.


Jason Schneider
Jason Schneider el 19 de Jul. de 2013
Remove
e = [Hydrogen Helium]
Use
strcmp as previously suggested.
Make sure when you call the function it is of the form:
[a b c d e f g] = element('Hydrogen')
You need to define where the rest of the output arguments will be assigned since they are internal variables to the function.
It seems this was also mentioned but the input argument needs to be a string or else Matlab will look for a variable that doesn't exist.

Categorías

Más información sobre Quantum Mechanics en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by