博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GotoBlas2之IxAMAX
阅读量:2809 次
发布时间:2019-05-13

本文共 3830 字,大约阅读时间需要 12 分钟。

Blas的相关接口可以参考,同时要参考源码包中的reference文件夹,这个应该才是最重要的吧。

比如,在ICAMAX 中对incx的解释(来自网页,如下)

When working backward (incx < 0), each routine starts at the end of the

       vector and moves backward, as follows:
            x(1-incx * (n-1)), x(1-incx * (n-2)), ..., x(1)

但看reference文件夹icamaxf.f源码片段,不是这样的:

      icamaxf = 0

      if( n.lt.1 .or. incx.le.0 ) return

可知,当N<1或INCX<=0时,均返回0.

 

 

转载地址:http://mnfqd.baihongyu.com/

你可能感兴趣的文章
用maven创建第一个maven项目
查看>>
关于XML文档的xmlns、xmlns:xsi和xsi:schemaLocation
查看>>
mkdirs和mdir的区别
查看>>
osgi详解
查看>>
springmvc请求参数获取的几种方法
查看>>
servlet请求转发与重定向的区别
查看>>
ORACLE中 SEQUENCE自动增长 用法
查看>>
eclipse运行报java.lang.OutOfMemoryError: PermGen space解决方法
查看>>
利用java获取本机IP地址的方法
查看>>
springboot 生产环境部署脚本
查看>>
1.日常git常用命令总结
查看>>
spring cloud 微服务
查看>>
gradle 使用实战
查看>>
SpringCloud服务发现与服务注册
查看>>
SpringCloud Turbine
查看>>
SpringCloud zuul 网关 集成
查看>>
SpringCloud Conf 搭建配置中心
查看>>
spring cloud- 阿波罗 apllo 本地开发环境
查看>>
基于oAuth2.0实现开放平台授权中心
查看>>
SpringCloud Conf 配置中心 属性加解密之对称加密
查看>>