help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re:


From: Isak Delberth Davids
Subject: Re:
Date: Tue, 27 Oct 2015 10:16:54 +0200


On 27 October 2015 at 10:10, Jonathan Camilleri <address@hidden> wrote:
There must be something I am doing wrong because I am not seeing the results on the graph, how does plotting matrices work?

Command line:
>> A=[1,2;5,6];
>> B=[3,3;5,6];
>> plot(A,B, `--')
error: invalid character '`' (ASCII 96) near line 1, column 12
parse error:

  syntax error

>>> plot(A,B, `--')
              ^

>> plot(A,B)
>>
Using windows/CLI
I get the impression by reading the plot help that I can specify a format however again something must be wrong in my understanding of the FMT parameter.

_______________________________________________
Help-octave mailing list
address@hidden
https://lists.gnu.org/mailman/listinfo/help-octave


Hi,

as to the error with
plot(A,B, `--')

change that to
plot(A,B, '--')

notice the difference in the first quotation mark.

Cheers,
IDD


reply via email to

[Prev in Thread] Current Thread [Next in Thread]