keep getting an error message saying might be missing a closing bracket, causing invalid syntax at y, but the bracket is there. (line 34)

19 Ansichten (letzte 30 Tage)
  7 Kommentare
Stephen23
Stephen23 am 12 Mai 2023
Bearbeitet: Stephen23 am 12 Mai 2023
"would adding a multiplication operator define the variable R as another error says that the variable R is unrecognised "
A multiplication operator does not define its input arguments. It requires its inputs to be already defined, for the simple reason that it is not possible to multiply numeric values that do not exist.
Defining variables is done e.g. by allocating something to that variable or as an input argument to a function.
The variable R is defined as the very first input to your function:
function [outputArg1,outputArg2] = Hemisphere(R,h,T_f)
Are you calling the function with its required inputs?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Fangjun Jiang
Fangjun Jiang am 12 Mai 2023
Bearbeitet: Fangjun Jiang am 12 Mai 2023
You can paste the text, instead of attaching a snapshot picture.
I believe there is a mistake in defining the odeFun. There is no operator in front of "y(1)". "3(y(1)" is not valid either.

Kategorien

Mehr zu Data Import and Export 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