How to make function assign variables that will stick around after the function is done running?

4 Ansichten (letzte 30 Tage)
For example:
function test(x)
car.color = x;
end
if i first input
global car
I want car.color to exist after i input test('red')

Akzeptierte Antwort

Star Strider
Star Strider am 20 Mai 2015
Have it return the structure ‘car’ as an output:
function car = test(x)
car.color = x;
end
%
car = test('red')
produces:
car =
color: 'red'
  8 Kommentare

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by